这道超级简单的题目没有任何输入。
你只需要在一行中输出著名短句“Hello World!”就可以了。
1 #include<stdio.h> 2 int main(){ 3 printf("Hello World! "); 4 return 0; 5 }