using namespace std;
int main()
{
string str = "Hello, world!";
cout << str << endl;
return 0;
}
Тут ошибки нет, а вот...
#include <iostream>
#include <string>
int main()
{
string str = "Hello, world!";
std::cout << str << endl;
return 0;
}
Тут есть... В чём ошибка?
std::endl
А что? А почему? А куда?
Обсуждают сегодня