
29.08.2008, 19:10
|
|
Познающий
Регистрация: 22.01.2007
Сообщений: 40
Провел на форуме: 179857
Репутация:
4
|
|
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
for (int x = 1; x <= 10; x++)
{
if (x == 5)
break;
cout << x << " ";
}
cout << "Cukl prervan pri x == 5 " << x << endl;
return 0;
}
'x' : undeclared identifier почему так?
|
|
|