1. 程式人生 > >編寫一個基於物件的程式,求長方形的體積

編寫一個基於物件的程式,求長方形的體積

長方柱資料成員包括length、width、height,要求用成員函式實現以下功能:
1,輸入3個長方體的長寬高;
2,計算長方柱的體積;
3,輸出3個長方體的體積。
Input
1 2 3
3 3 3
10 10 10

Output
6
27
1000

#include<iostream>
using namespace std;

class rectangle{
    public:
        //初始化 
        rectangle(){
            length = width = height = 0;
        }
        //輸入資料 
void input(){ cin >> length >> width >> height; } //輸出結果 void output(){ volume = length * width * height; cout << volume << endl; } private: double length; double width; double
height; double volume; }; int main() { rectangle a[3]; for(int i = 0; i < 3; i++){ a[i].input(); a[i].output(); } return 0; }