这道超级简单的题目没有任何输入。

你只需要在第一行中输出程序员钦定名言“Hello World”,并且在第二行中输出更新版的“Hello New World”就可以了。

1 #include<bits/stdc++.h>
2 using namespace std;
3 typedef long long LL;
4 const int maxn = 100010;
5 int main() {
6     printf ("Hello World\nHello New World\n");
7     return 0;
8 }

 

相关文章:

  • 2021-10-13
  • 2021-08-26
  • 2021-12-28
  • 2022-02-16
  • 2021-09-26
  • 2021-07-28
  • 2022-02-07
猜你喜欢
  • 2021-05-10
  • 2021-12-04
  • 2021-11-24
  • 2021-09-07
  • 2022-02-07
  • 2021-07-09
  • 2022-02-12
相关资源
相似解决方案