You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
191 B

#include<stdio.h>
#define pi 3.14
int main()
{ float r,h,c1,sb,vb;
scanf("%f %f",&r,&h);
c1=2*pi*r;
sb=4*pi*r*r;
vb=pi*r*r*h;
printf("c1=%.2f\nsb=%.2f\nvb=%.2f",c1,sb,vb);
return 0;
}