函数根据圆的半径求周长和面积的问题
#include<stdio.h>{
float zc(int x)
float c;
c=2*3.14*x;
return c;
}
{
float mj(int y)
float d;
d=2*3.14*y*y;
return d;
}
void main()
{
int r;
float z,m;
scanf("%d",&r);
z = zc(r);
m = mj(r);
printf("%f",z);
printf("%f",m);
}
哪里错了?怎么总是编不出来
[ 本帖最后由 KKK12345 于 2011-7-25 17:51 编辑 ]