07/12/15 01:59:36 WaVpmZNI
>>625
すまん、消すの忘れた。
指摘ありがとう。
#include <iostream>
int main()
{
using namespace std;
cout << "hello world" << endl;
return 0;
}
こんな書き方もありだよね。
#include <iostream>
int main()
{
std::cout << "hello world" << std::endl;
return 0;
}