当前位置: 代码迷 >> 综合 >> 7-6 新世界 (5 分)
  详细解决方案

7-6 新世界 (5 分)

热度:24   发布时间:2023-11-02 18:48:17.0

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

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

#include<iostream>
#include<cstdio>
#include<set>
using namespace std;
const int maxn=1010;
int num[maxn];int main(){printf("Hello World\n");printf("Hello New World\n");return 0;
}

 

  相关解决方案