欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

L1-001 Hello World (5分)

程序员文章站 2022-06-22 09:59:33
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;
}