05 2020 档案

摘要:1、 account.h #ifndef ACCOUNT_H_ #define ACCOUNT_H_ #include <string> using namespace std; class Account { private: string name_; //姓名 string number_; 阅读全文
posted @ 2020-05-30 22:12 Fionaa 阅读(294) 评论(0) 推荐(0)
摘要:程序清单10.1+10.2+10.3 头文件stock00.h 1 //stock00.h 2 #ifndef STOCK00_H_ //如果没有定义STOCK00_H_ 3 #define STOCK00_H_ //那么就定义STOCK00_H_ 4 5 #include<string> 6 us 阅读全文
posted @ 2020-05-04 17:57 Fionaa 阅读(522) 评论(0) 推荐(0)