精?/p>
第一?/p>
1.1
题目内容?/p>
使用
printf()
在屏幕上输出
hello world!
提示?/p>
#include
<stdio.h>
int main()
{
printf("hello world!\n");
return 0;
}
输入格式
:
?/p>
输出格式?/p>
输出提示信息?/p>
"hello world!\n"
输入样例?/p>
输出样例?/p>
hello world!
#include <stdio.h>
int main()
{
printf("hello world!\n");
return 0;
}
1.2
在屏幕上输出多行信息?/p>
3
分)
题目内容?/p>
使用
printf()
函数在屏幕上输出以下多行信息?/p>
hello world!