12-15作业
2017-12-15 本文已影响0人
黑夜也会笑我
作业一:
编写一个程序,用户输入5个数,并在最后输出大于这5个数平均数的所有数。
例如:
输入:1 2 3 4 5
输出: 4 5
提示:数组
作业二:
将如下代码练熟,要求在300秒内打完(不查看任何资料),并可以正常运行。
周五上课检查
#include <stdio.h>
#define PI 3.14
double calculateVolume(int height,int radius);
int main()
{
int cHeight=0;
int cRadius=0;
double volume=0.0;
printf("请输入圆柱体的高度:\n");
scanf("%d",&cHeight);
printf("请输入圆柱体的半径:\n");
scanf("%d",&cRadius);
volume=calculateVolume(cHeight,cRadius);
printf("圆柱体的体积为:%f",volume);
return 0;
}
double calculateVolume(int height,int radius)
{
double result=height*radius*radius*PI;
return result;
}