用devc++编程输入一个长方体的长宽高(要求有提示语“请输入一个长方体的长宽高:”),输出长方体的表面积和体积(要求小数点后保留两位)。软件测试要求:输入长宽高为3.4,2.3,1.2
时间: 2024-11-23 20:40:40 浏览: 8
行业文档-设计装置-一种长方体箱形构件.zip
当你在Dev-C++环境中编写程序时,可以按照以下步骤来计算长方体的表面积和体积:
```cpp
#include <iostream>
using namespace std;
// 定义函数计算长方体的表面积
double calculateSurfaceArea(double length, double width, double height) {
return 2 * (length * width + length * height + width * height);
}
// 定义函数计算长方体的体积
double calculateVolume(double length, double width, double height) {
return length * width * height;
}
int main() {
// 提示用户输入长方体的长宽高
cout << "请输入一个长方体的长宽高:" << endl;
double length, width, height;
cin >> length >> width >> height;
// 计算并输出表面积和体积,保留两位小数
double surfaceArea = calculateSurfaceArea(length, width, height);
double volume = calculateVolume(length, width, height);
cout << "长方体的表面积是:" << fixed << setprecision(2) << surfaceArea << endl;
cout << "长方体的体积是:" << fixed << setprecision(2) << volume << endl;
// 测试部分:给定特定长宽高值
if (length == 3.4 && width == 2.3 && height == 1.2) {
cout << "对于给定的长宽高 (3.4, 2.3, 1.2),表面积和体积将分别如下:" << endl;
// 调用函数并输出测试结果
surfaceArea_test = calculateSurfaceArea(3.4, 2.3, 1.2);
volume_test = calculateVolume(3.4, 2.3, 1.2);
cout << "表面积: " << surfaceArea_test << endl;
cout << "体积: " << volume_test << endl;
}
return 0;
}
```
阅读全文