这个程序不需要从输入中读入任何数据,只需要输出一个字符串 Hello World。 2333看谁不能ac。
Hello World
无
一行字符串。
样例输入
样例输出
#include <iostream> //包含头文件 using namespace std; //使用标准的命名空间 int main() //主函数,有且唯一 { cout << "Hello World" << endl; //cout 输出 endl 换行 return 0; //返回零 }