Hallo,
ich habe einen problem in C++
ich schreibe einen programm und da kommen immer fehler:
#include <iostream>
int main ()
{
int x = 5;
int y = 7;
cout: << "\n";
cout << x + y << " " << x * y;
cout << "\n";
return 0;
}
1. problem C:\Dev-Cpp\include\c++\3.4.2\backward\iostream.cpp In function `int main()':
2. problem 7 C:\Dev-Cpp\include\c++\3.4.2\backward\iostream.cpp expected primary-expression before '<<' token
3. problem 8 C:\Dev-Cpp\include\c++\3.4.2\backward\iostream.cpp `cout' undeclared (first use this function)
4. problem (Each undeclared identifier is reported only once for each function it appears in.)
5 problem C:\Dev-Cpp\bin\Makefile.win [Build Error] [../include/c++/3.4.2/backward/iostream.o] Error 1
MC999 Gast |