C++ Primer 源程序

时间:2015-05-04 03:24:23
【文件属性】:

文件名称:C++ Primer 源程序

文件大小:343KB

文件格式:RAR

更新时间:2015-05-04 03:24:23

C++ Primer 源程序

#include #include "Sales_item.h" int main() { Sales_item item1, item2; std::cin >> item1 >> item2; // first check that item1 and item2 represent the same book if (item1.same_isbn(item2)) { std::cout << item1 + item2 << std::endl; return 0; // indicate success } else { std::cerr << "Data must refer to same ISBN" << std::endl; return -1; // indicate failure }


网友评论