Hello World

警告
本文最后更新于 2020-06-14,文中内容可能已过时。
1
2
3
4
5
6
7
#include <iostream>

int main()
{
	cout << "Hello, World!" << endl;
	return 0;
}