guozhenzheng 2022-10-05 16:50:41 2022-10-05 16:51:48
#include<iostream> #include<cstdio> using namespace std; int main(){ printf("Hello, World!"); }
6
不是,这道题难吗?
这题好难啊
#include using namespace std; int main() { cout << "Hello, World!" << endl; return 0; }
ddd
这样子更简便: #include using namespace std; int main() { cout << "Hello, World!" << endl; return 0; } 不用 #include
共 6 条回复
6
不是,这道题难吗?
这题好难啊
#include using namespace std; int main() { cout << "Hello, World!" << endl; return 0; }
ddd
这样子更简便: #include using namespace std; int main() { cout << "Hello, World!" << endl; return 0; } 不用 #include