摘要: Person.hpp #ifndef PERSON_H #define PERSON_H #include <iostream> #include <iomanip> #include <string> using std::cout; using std::cin; using std::endl 阅读全文
posted @ 2021-12-11 18:19 Ksan 阅读(13) 评论(3) 推荐(0) 编辑
摘要: task2.cpp #include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: void draw() { std::cout << "Graph::draw() : just as a 阅读全文
posted @ 2021-11-27 15:19 Ksan 阅读(27) 评论(3) 推荐(0) 编辑
摘要: vector_int.hpp #ifndef VECTOR_INT_H #define VECTOR_INT_H #include <iostream> #include <cassert> using std::cout; using std::endl; class vector_int{ pr 阅读全文
posted @ 2021-11-09 20:01 Ksan 阅读(14) 评论(3) 推荐(0) 编辑
摘要: Info.hpp #ifndef INFO_HPP #define INFO_HPP #include <iostream> #include <string> using namespace std; class info { private: string nickname, contact, 阅读全文
posted @ 2021-11-02 16:42 Ksan 阅读(14) 评论(2) 推荐(0) 编辑
摘要: Complex.hpp #ifndef COMPLEX_HPP #define COMPLEX_HPP #include <iostream> #include <cmath> #include <iomanip> class Complex { public: Complex(double rea 阅读全文
posted @ 2021-10-25 00:50 Ksan 阅读(34) 评论(4) 推荐(0) 编辑