c++编写一个函数求长方体的体积,长方体的长、宽、高的默认值分别为30、20、10‘在主体函数中进行输入输出’
时间: 2024-06-06 18:06:40 浏览: 150
C语言编程-编写函数fun求1!+2!+3!+ …… +n!的和,在main函数中由键盘输入n值,并输出运算结果;
5星 · 资源好评率100%
#include <stdio.h>
float volume(float length, float width, float height);
int main() {
float length = 30, width = 20, height = 10;
printf("请输入长方体的长、宽、高:");
scanf("%f %f %f", &length, &width, &height);
printf("长方体的体积为:%.2f\n", volume(length, width, height));
return 0;
}
float volume(float length, float width, float height) {
return length * width * height;
}
阅读全文