11 2023 档案

摘要:实验任务5 TextCoder.hpp 1 #pragma once 2 3 #include <iostream> 4 #include <string> 5 6 using namespace std; 7 8 class TextCoder { 9 private: 10 string tex 阅读全文
posted @ 2023-11-28 20:10 rssn 阅读(48) 评论(0) 推荐(0)
摘要:实验任务1 Point.hpp 1 #pragma once 2 3 #include <iostream> 4 using std::cout; 5 using std::endl; 6 7 class Point { 8 public: 9 Point(int x0 = 0, int y0 = 阅读全文
posted @ 2023-11-04 11:33 rssn 阅读(42) 评论(0) 推荐(0)