通过次数
0
提交次数
请在屏幕上输出一行字符'hello world!'
hello world!
no input needed
#include<stdio.h> void main() { printf("hello world!\n"); }
#include<cstdio> using namespace std; int main() { printf("hello world!\n"); return 0; }