L1-001 Hello World (5分)
程序员文章站
2022-03-25 17:20:14
GPLT-天梯赛-L1-001 Hello World (5分) ......
l1-001 hello world (5分)
这道超级简单的题目没有任何输入。
你只需要在一行中输出著名短句 “hello world!” 就可以了。
输入样例:
无
输出样例:
hello world!
代码:
#include<bits/stdc++.h> using namespace std; int main() { cout<<"hello world!"<<endl; return 0; }
上一篇: JDK 14 性能提升,但 JDK 8 仍是最强王者!
下一篇: c++中的异常处理