10.5

作者: 宋国霖 | 来源:发表于2017-10-08 21:49 被阅读0次

    显示名字

    #include <stdio.h>
    
    int main ()
    {
        printf ("songguolin\n");
            return 0 ;
    }
    

    计算圆柱底面积

    #include<stdio.h>
    #define PI 3.14
    double calculateVolume (int radius);
    int main ()
    {
        int cRadius = 0;
        double volume = 0.0;
        printf ("请输入圆的半径:\n");
        scanf (" %d ",&cRadius);
        volume = calculateVolume(cRadius);
        printf ("圆的面积是: %f \n",volume);
        return 0;
     }
     double calculateVolume (int radius)
     {
        double result = PI*radius*radius;
        return result;
     }
    

    相关文章

      网友评论

          本文标题:10.5

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