首页 > 其他 > 详细

[0301]统计图书销售信息 (运算符重载)

时间:2018-03-11 15:10:42      阅读:209      评论:0      收藏:0      [点我收藏+]

Description:

技术分享图片

Code:

#include<iostream>
#include<cstring>
#include<fstream> 
using namespace std;
struct Sales_Item{
    string name;
    int sum;
    double value;
    
    Sales_Item operator +(const Sales_Item &others){
        Sales_Item tmp;
        tmp.sum=this->sum+others.sum;
        tmp.value=(this->sum*this->value+others.sum*others.value)/tmp.sum;
        tmp.name=this->name;
        return tmp;
    }
    
}; 
istream &operator >>(istream &i,Sales_Item &tmp){
    i>>tmp.name>>tmp.sum>>tmp.value;
    return i;
} 
ostream &operator <<(ostream &o,const Sales_Item &tmp){
    o<<tmp.name<<" "<<tmp.sum<<" "<<tmp.sum*tmp.value<<" "<<(int)tmp.value<<endl;
    return o;
}
int main()
{
    ifstream fin;
    ofstream fout;
    fin.open("Homework1.in");
    fout.open("Homework1.out");
    Sales_Item item1,item2;
    fin>>item1>>item2;
    fout<<item1+item2<<endl;
    fin.close();
    fout.close();
    return 0; 
}

Runshot:

技术分享图片

[0301]统计图书销售信息 (运算符重载)

原文:https://www.cnblogs.com/shy-/p/8543888.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!