摘要:
pets.hpp #pragma once #include<iostream> #include<string> using namespace std; class MachinePets { public: MachinePets(){ } MachinePets(const string s 阅读全文
摘要:
实验任务5 #pragma once #include<iostream> #include<string> using namespace std; class Info { public: Info(string nickname1, string contact1, string city1, 阅读全文
摘要:
实验任务2 #include <iostream> using namespace std; class Point { public: Point(int x0 = 0, int y0 = 0); Point(const Point&p ); ~Point() = default; int get 阅读全文