摘要:
# ifndef PERSON_H # define PERSON_H # include <iostream> # include <string> # include <iomanip> using namespace std; class Person { private: string na 阅读全文
摘要:
#include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: void draw() { std::cout << "Graph::draw() : just as an interfac 阅读全文
摘要:
#ifndef VECTOR_INT_H #define VECTOR_INT_H # include <iostream> # include <cassert> using namespace std; class Vector_int { public: Vector_int(int n, i 阅读全文
摘要:
# ifndef INFO_H # define INFO_H # include <iostream> # include <string> using namespace std; class info { public: info(string a = " ", string b = " ", 阅读全文