摘要:
实验任务4 #pragma once #include<iostream> #include<stdexcept> using namespace std; template<typename T> class Vector { public: Vector(int n); Vector(int n 阅读全文
摘要:
实验任务5 #pragma once #include<iostream> #include<string> using namespace std; class TextCoder { public: TextCoder() = default; TextCoder(string str); st 阅读全文
摘要:
实验任务1 #pragma once #include <iostream> using std::cout; using std::endl; class Point { public: Point(int x0 = 0, int y0 = 0); ~Point() = default; int 阅读全文