题解 | #设计立方体类#

设计立方体类

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

using namespace std;

class Cube {
    private:
         int length;
         int width;
         int height;
    public:
//          Cube(int length,int width,int height){
//              this->length=length;
//              this->width=width;
//              this->height=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 getArea(){
            return 2*(this->height*this->width+
                     this->height*this->length+this->width*this->length);
        }
    
        int getVolume(){
            return this->length*this->width*this->height;
        }
    // write your code here......
    

};

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;
}
全部评论

相关推荐

小红书 后端开发 总包n+8w+期权
点赞 评论 收藏
分享
10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务