2018年7月23日

C++Primer Plus 编程练习_第三章

摘要: 1 #pragma once 2 #ifndef CHAPTER3_H_ 3 #define CHAPTER3_H_ 4 #include 5 #include 6 7 using namespace std; 8 9 class Exercise1 10 { 11 private: 12 const int factor = 12; 13 public: 14... 阅读全文

posted @ 2018-07-23 14:03 uimodel 阅读(549) 评论(0) 推荐(0) 编辑

C++Primer Plus 编程练习_第二章

摘要: 1 #pragma once 2 #ifndef CHAPTER2_H_ 3 #define CHAPTER2_H_ 4 #include 5 using namespace std; 6 7 class Exercise1 8 { 9 private: 10 string name_; 11 string address_; 12 public: 13 ... 阅读全文

posted @ 2018-07-23 13:58 uimodel 阅读(624) 评论(0) 推荐(0) 编辑

导航