1
hello world!(3分)
题目内容:
使用printf()在屏幕上输出 hello world!
提示:
#include <stdio.h>
int main()
{
printf("hello world!\n");
return 0;
}
输入格式: 无
输出格式:
输出提示信息:"hello world!\n"
输出样例:
hello world!
为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。
时间限制:500ms内存限制:32000kb
#include <stdio.h>
int main()
{
printf("hello world!\n");
return 0;
}
2
在屏幕上输出多行信息(3分)
题目内容:
使用printf()函数在屏幕上输出以下多行信息:
hello world!
hello hit!
hello everyone!
提示:
在printf()函数中转义字符‘\n’表示换行。
输入格式: 无
输出格式:
输出提示信息:
"hello world!\n"
"hello hit!\n"
"hello everyone!\n"
输出样例:
hello world!
hello hit!
hello everyone!
为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。
时间限制:500ms内存限制:32000kb
#include <stdio.h>
int main()
{
printf("hello world!\n");
printf("hello hit!\n");
printf("hello everyone!\n");
return 0;
}
3
计算半圆弧长及半圆的面积。(3分)
题目内容:
编程并输出半径r=5.3的半圆弧长(提示:半圆弧长不应该加直径的长度。)及该半圆弧与直经围成的半圆的面积,
的取值为3.14159。要求半径r和必须利用宏常量表示。
输入格式:无
输出格式:
半圆的面积输出格式: "Area=%.5f\n"
半圆弧长输出格式: "circumference=%.5f\n"
输出样例:
Area=44.12363
circumference=16.65043
为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。
时间限制:500ms内存限制:32000kb
#include <stdio.h>
int main()
{
double l=5.3*3.14159;
double s=3.14159*5.3*5.3/2.0;
printf("Area=%.5f\n",s);
printf("circumference=%.5f\n",l);
return 0;
}
4
计算长方体体积(3分)
题目内容:
编程并输出长1.2、宽4.3、高6.4的长方体的体积。要求长方体的长、宽、高必须利用const常量表示。程序中用到的数据类型均为为 double类型。
输入格式:无
输出格式:"volume=%.3f\n"
为避免出现格式错误,请直接拷贝粘贴题目中给的格式字符串和提示信息到你的程序中。
时间限制:500ms内存限制:32000kb
#include <stdio.h>
const double c=1.2,k=4.3,g=6.4;
int main()
{
double v=c*k*g;
printf("volume=%.3f\n",v);
return 0;
}
纯C,也是我自己写的作业,有问题欢迎指正!!