1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
基本的なC++ファイルの骨格構造
*/
#include <iostream>
#include <string>
using namespace std;
// プログラムの実行時にgetxが実行されるメイン関数の呼び出し
int main()
{
//
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
基本的なC++ファイルの骨格構造
*/
#include <iostream>
#include <string>
using namespace std;
// プログラムの実行時にgetxが実行されるメイン関数の呼び出し
int main()
{
/*
プリント
以下の各文字列をそれぞれ別の行に表示します。
*/
cout << "Hello" << endl;
cout << "World" << endl;
cout << "!" << endl;
return 0;
}