Как решить проблему error: требуется идентификатор
Код:
// ОПРЕДЕЛЕНИЕ РАЗМЕРОВ ПЕРЕМЕННЫХ РАЗНЫХ ТИПОВ НА ВАШЕМ КОМПЮТЕРЕ
#include <iostream>
using namespace std;
int main ()
{
cout << "The size of an int is: \t" << sizeof(int) << "bytes.\n";
cout << "The size of a short int is: \t" << sizeof(short) << "bytes.\n";
cout << "The size of a long int is: \t" << sizeof(long) << "bytes.\n";
cout << "The size of a char is: \t" << sizeof(char) << "bytes.\n";
cout << "The size of a float is: \t" << sizeof(float) << "bytes.\n";
cout << "The size of a double is: \t" << sizeof(double) << "bytes.\n";
cout << "The size of a bool is: \t" << sizeof(bool) << "bytes.\n";
return 0;
}
#include <iostream>
using namespace std;
int main ()
{
cout << "The size of an int is: \t" << sizeof(int) << "bytes.\n";
cout << "The size of a short int is: \t" << sizeof(short) << "bytes.\n";
cout << "The size of a long int is: \t" << sizeof(long) << "bytes.\n";
cout << "The size of a char is: \t" << sizeof(char) << "bytes.\n";
cout << "The size of a float is: \t" << sizeof(float) << "bytes.\n";
cout << "The size of a double is: \t" << sizeof(double) << "bytes.\n";
cout << "The size of a bool is: \t" << sizeof(bool) << "bytes.\n";
return 0;
}
скопируй текст ошибки...
и после #include <iostream> надо написать
using namespace std;
или перед каждым cout указать область видимости std::
А где у тебя функция main?
Цитата: wanja
А где у тебя функция main?
Спасибо!
Теперь все работает.