#include<stdio.h>
#define pi 3.14
void main()
{
float r,h;
float s,v,c;
printf("please input the radius and high:\n");
scanf("%f,%f",&r,&h);
s=pi*r*r;
c=2*pi*r;
v=1/3.0*pi*r*r*h;
printf("面积s=%6.2f,周长c=%6.2f,体积v=%6.2f\n",s,c,v);
return 0;
}
可以运行,就是输入数据的时候要按格式输入,比如你的格式中间有逗号或其他的字符就必须加逗号和其他的字符