码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 面向对象例子

时间:2018-09-20 18:48:22      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:type   str   ble   ace   height   name   iostream   public   volume   

#include <iostream>

using namespace std;


typedef long int *pint32;


class Box {
public:
    double length;
    double breadth;
    double height;
};


int main() {

    Box box1;
    Box box2;

    double volume = 0.0;

    box1.height = 5.0;
    box1.length = 6.0;
    box1.breadth = 7.0;


    box2.height = 10.0;
    box2.length = 12.0;
    box2.breadth = 13.0;


    volume = box1.height * box1.length * box1.breadth;
    cout << "box1 体积" << volume << endl;

}





c++ 面向对象例子

标签:type   str   ble   ace   height   name   iostream   public   volume   

原文地址:https://www.cnblogs.com/niconico-girl/p/9682532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!