#include using namespace std; // main() 是程序开始执行的地方 /* 这是注释 */ /* C++ 注释也可以 * 跨行 */ int main(){ cout << "Hello World"; // 输出 Hello World return 0; }