#include <math.h>
#include <stdio.h>
#define PI 3.14159
void main()
{
float V2,r,h;
double S2,L,V1,S1;
printf("\nEnter r=");
scanf("%f",&r);
printf("Enter h=");
scanf("%f",&h);
L=2*PI*r;
S1=PI*pow(r,2);
S2=4*S1;
V1=(4.0/3)*PI*pow(r,3);
V2=S1*h;
printf("L=%6.2f\nS1=%6.2f\nS2=%6.2f\nV1=%6.2f\nV2=%6.2f",L,S1,S2,V1,V2);
}
这样是好的
#include <stdio.h>
#define PI 3.14159
void main()
{
float V2,r,h;
double S2,L,V1,S1;
printf("\nEnter r=");
scanf("%f",&r);
printf("Enter h=");
scanf("%f",&h);
L=2*PI*r;
S1=PI*pow(r,2);
S2=4*S1;
V1=(4.0/3)*PI*pow(r,3);
V2=S1*h;
printf("L=%6.2f\nS1=%6.2f\nS2=%6.2f\nV1=%6.2f\nV2=%6.2f",L,S1,S2,V1,V2);
}
这样是好的
做最好的自己