eg 4-1 Calculate the area of a circle

/*顺序结构程序:计算半径为r的圆面积、球体积*/

#include "stdio.h"
#define PI 3.1415926
float area(float x);     //要注意这个地方,函数在下面定义完后还要在上面进行引用 
                         //应该也是预处理的意思吧
float  volume(float x);

int main()
{
    float r,s,v;
    scanf("%f",&r);
    s=area(r);
    v=volume(r);
    printf("%f\t%f\n",s,v);
    return 0;
}

float area(float x)
{
    float s;
    s= PI*x*x;
    return s;
}

float  volume(float x)
{
    float v;
    v=4.0/3.0*PI*x*x*x;
    return v;           //计算完成之后想把哪个值传回主函数,那就return 哪个字母
}

你可能感兴趣的:(C语言,c语言)