计算圆柱体的表面积
#include int main()#define PI 3.14159
{ /Begin/float r,h;double s;scanf("%f %f", &r,&h);s=2PIrr+2PIrh;printf("Area = %.3f",s); /End/ return 0;}
一直在错小数部分,到底错哪了呀TT
小数部分差多少?