码迷,mamicode.com
首页 > 其他好文 > 详细

习题5-14

时间:2016-12-10 22:57:52      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:out   iostream   namespace   code   main   div   ret   car   public   

#include "stdafx.h"
#include<iostream>
using namespace std;

class Boat;
class Car {
private:
    int weight;
public:
    Car(int j) {
        weight = j;
    }
    friend int getTotalWeight(Car &aCar, Boat &aBoat);
};

class Boat {
private:
    int weight;
public:
    Boat(int j) {
        weight = j;
    }
    friend int getTotalWeight(Car &aCar, Boat &aBoat);
};

int getTotalWeight(Car &aCar, Boat &aBoat) {
    return aCar.weight + aBoat.weight;
}

int main()
{
    Car c1(4);
    Boat b1(5);
    cout << "The total weight:" << getTotalWeight(c1, b1) << endl;
    return 0;
}

 

习题5-14

标签:out   iostream   namespace   code   main   div   ret   car   public   

原文地址:http://www.cnblogs.com/jinge1001/p/6158276.html

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