2609 - 请在屏幕上输出一行字符'hello world!'

通过次数

0

提交次数

0

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

请在屏幕上输出一行字符'hello world!'

题目输入

题目输出

hello world!

输入/输出样例

输入格式

no input needed

输出格式

hello world!

C语言解答

#include<stdio.h>
void main()
{
     printf("hello world!\n");
}

C++解答

#include<cstdio>
using namespace std;
int main()
{
	printf("hello world!\n");
	return 0;
}