C++ Primer 第五版 1.6 书店程序 笔记
本节主要的内容只有一份代码,就是标题所说的书店程序, 1#include <iostream> 2#include "Sales_item.h" 3int main() 4{ 5 Sales_item total; // variable to hold data for the next transaction 6 // read the first transaction and ensure that there are data to process 7 if (std::cin >> total) 8 { 9 Sales_item trans; //...