美文网首页
12-15作业

12-15作业

作者: 黑夜也会笑我 | 来源:发表于2017-12-15 20:50 被阅读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;
     } 
    

    相关文章

      网友评论

          本文标题:12-15作业

          本文链接:https://www.haomeiwen.com/subject/vbtjwxtx.html