摘要:
#include<iostream> using namespace std; class vectorInt { private: int n; int value; int* arr; public: vectorInt(int n0,int value0 = 0 ) { value = val 阅读全文
摘要:
#pragma once #include <iostream> #include<vector> #include <string> #include<iomanip> using namespace std; class Info { public: Info() {} Info(string 阅读全文
摘要:
#include<iostream> #include<iomanip> using std::cout; using std::endl; class Point { public: Point(int x0=0,int y0=0); Point(const Point&p ); ~Point() 阅读全文