05.08.2014, 00:45. Просмотров 612. Ответов 1
списал програму с книги,а выбивает ошибку
вот:
C++ |
1
2
3
4
5
6
7
8
9
10
11
| #include<ioastream>
using namespace std;
int main()
{
int x = 5;
int y=7;
cout << "\n";
cout << x+y << " " <<x*y;
cout <<"\n";
return 0;
} |
|
выбивает вот такую ошибку:
7 D:\C++\prog02.cpp `cout' undeclared (first use this function)
(Each undeclared identifier is reported only once for each function it appears in.)