3132 - Hello world!

通过次数

0

提交次数

0

时间限制 : 1 秒 内存限制 : 128 MB

 多人学习程序是从经典的hello world!开始的。今天我们也将写下人生的第一个程序,你能写出这个hello程序吗?

题目输入

题目输出

Hello world!

输入/输出样例

输入格式


                        

输出格式


                        

C语言解答

#include<stdio.h>
int main()
{
     printf("hello world");
     return 0;
}

C++解答

#include<iostream>
using namespace std;
int main()
{
	cout<<"Hello World!";
	return 0;
}