摘要: 任务二: GradeCalc.hpp: 1 #include<iostream> 2 #include<vector> 3 #include<string> 4 #include<algorithm> 5 #include<numeric> 6 #include<iomanip> 7 8 using 阅读全文
posted @ 2024-11-23 18:20 Bling888 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 任务1: button.hpp: 1 #pragma once 2 3 #include<iostream> 4 #include<string> 5 6 using std::string; 7 using std::cout; 8 9 class Button{ 10 public: 11 Bu 阅读全文
posted @ 2024-11-09 20:02 Bling888 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务一: t.h 1 #pragma once 2 #include <string> 3 4 class T { 5 public: 6 T(int x = 0, int y = 0); 7 T(const T &t); 8 T(T &&t); 9 ~T(); 10 11 void adjust( 阅读全文
posted @ 2024-10-28 17:24 Bling888 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 6 using namespace std; 7 8 template<typename T> 9 void outpu 阅读全文
posted @ 2024-10-13 20:43 Bling888 阅读(14) 评论(0) 推荐(0) 编辑