回复 2楼 安财小白
#include <stdio.h>#define PI 3.14
void main()
{
float r,S,C;
char m;
printf ("请输入圆的半径r:");
scanf ("%f",&r);
fflush (stdin);
printf ("input arithmetic lable(s c a):");
scanf ("%c",&m);
switch (m)
{
case 's': S=PI*r*r;break;
case 'c': C=2*PI*r;break;
case 'a': S=PI*r*r;C=2*PI*r;break;
}
printf ("%.2f=")
}
这是我自己写的第三个,但最后不会写了,你能帮我看看吗?