由键盘输入长方体的长、宽、高,求该长方体的表面积与其体积的比值(结果显示两位小数位) c语言

2024年11月30日 20:49
有2个网友回答
网友(1):

代码老帆升轿樱
#include 侍老
void main(void)
{
double a,b,c;
double e,s,v;
printf("Enter 3 sides fo the rectangle:");
scanf("%lf %lf %lf",&a,&b,&c);
s=2*(a*b+a*c+b*c);
v=a*b*c;
e=s/v;

printf("%.2lf\n",e);
}

网友(2):

#include
int main( )
{
double a,b,c;
double e,s,v;
scanf("%lf %lf %lf"敬裂野,&a,&b,&c);
s=2*(a*b+a*c+b*c);
v=a*b*c;
e=s/v;
printf("亮喊%.2lf\n"源让,e);
return 0;
}