10-5

作者: 石岩6 | 来源:发表于2017-10-12 20:48 被阅读0次

    题目一:简单输出

    #inciude <stdio.h>
    int main()
    {
         printf("Hello word! \n");
         return 0;
    }
    

    题目二:圆的面积

    #include <stdio.h>
    #define PI 3.14
    double calculateVolume(int radius);
    int main()
    {
         int cRadius = 0;
         double volume = 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/ixooyxtx.html