题解 | #设计立方体类#

设计立方体类

http://www.nowcoder.com/practice/0f02d35dcd564f0a87865d604eccbe18

#include <iostream>
using namespace std;

class Cube {

    // write your code here......
    private:
        int length;
        int width;
        int height;
    public:
        int getArea() {
            return 2 * (length * width + length * height + width * height); 
        }
        int getVolume() {
            return this -> length * this -> width * this -> height;
        }
        void setLength(int length) {
            this -> length = length;
        }
        void setWidth(int width) {
            this -> width = width;
        }
        void setHeight(int height) {
            this -> height = height;
        }
        int getLength() {
            return this -> length;
        }
        int getWidth() {
            return this -> width;
        }
        int getHeight() {
             return this -> height;
        }

};

int main() {

    int length, width, height;
    cin >> length;
    cin >> width;
    cin >> height;

    Cube c;
    c.setLength(length);
    c.setWidth(width);
    c.setHeight(height);

    cout << c.getLength() << " "
        << c.getWidth() << " "
        << c.getHeight() << " "
        << c.getArea() << " "
        << c.getVolume() << endl;

    return 0;
}
全部评论

相关推荐

06-08 22:25
门头沟学院 Java
从零开始的转码生活:这hr不会打开手机不分青红皂白给所有人群发这句话,过一会再给所有人再发一遍,这肯定会有重复的,不管,再过一会再发一遍
点赞 评论 收藏
分享
评论
6
4
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务