编写一个C++代码只需要在第一行中输出程序员钦定名言Hello World并且在第二行中输出更新版的Hello New World就可以了。
#include
using namespace std;
int main() { cout << "Hello World" << endl; cout << "Hello New World" << endl; return 0; }
原文地址: http://www.cveoy.top/t/topic/hmUU 著作权归作者所有。请勿转载和采集!