0
Почему у меня ошибка выходит?Помогите
#include<iostream> using namespace std; int main() { int a,b,c ; 'cout'<<"введите число a:\n"; 'cin'>>a; 'cout'<<"введите число b:\n"; 'cin'>>b; c=a*b; 'cout'<<"если умножим "<<a<<"на"<<b<<; 'cout'<<"получим"<<c<<endL; system ("pause"); return 0; }
1 Respuesta
0
'cout' → cout
'cin' → cin
cout<<"если умножим "<<a<<"на"<<b<<;
// unused '<<' at the end of the line
cout<<"если умножим "<<a<<"на"<<b; // works
cout<<"получим"<<c<<endL;
// change endL to endl
cout<<"получим"<<c<<endl; // works