代码编辑器:
x
1
/**
2
* file: main.cpp
3
* author: 简单教程(www.twle.cn)
4
*
5
* Copyright © 2015-2065 www.twle.cn. All rights reserved.
6
*/
7
8
9
10
using namespace std;
11
12
int main()
13
{
14
cout << "Hello, World!" << endl;
15
cout << "Hello, 简单教程!" << endl;
16
return 0;
17
}
18