C++ //练习 1.25 借助网站上的Sales_item.h头文件,编译并运行本节给出的书店程序。

发布时间:2024年01月19日

C++ Primer(第5版) 练习 1.25

练习 1.25 借助网站上的Sales_item.h头文件,编译并运行本节给出的书店程序。

环境:Linux Ubuntu(云服务器)
工具:vim

?

代码块
/*************************************************************************
	> File Name: ex1.25.cpp
	> Author: 
	> Mail: 
	> Created Time: Thu 18 Jan 2024 02:55:01 PM CST
 ************************************************************************/

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

int main(){
    Sales_item total;
    if(cin>>total){
        Sales_item trans;
        while(cin>>trans){
            if(total.isbn() == trans.isbn()){
                total += trans;
            }
            else{
                cout<<total<<endl;
                total = trans;
            }
        }
        cout<<total<<endl;
    }
    else{
        cerr<<"No data?!"<<endl;
        return -1;
    }
    return 0;
}
运行结果显示如下

在这里插入图片描述

文章来源:https://blog.csdn.net/navicheung/article/details/135674898
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。