guguabiu

导航

2024年11月23日 #

实验4

摘要: 实验任务2: GradeCalc.hpp: 1 #include<iostream> 2 #include<vector> 3 #include<string> 4 #include<algorithm> 5 #include<numeric> 6 #include<iomanip> 7 8 usi 阅读全文

posted @ 2024-11-23 20:35 絮尘。 阅读(4) 评论(0) 推荐(0) 编辑

2024年11月10日 #

实验3

摘要: 任务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-10 21:00 絮尘。 阅读(2) 评论(0) 推荐(0) 编辑

2024年10月29日 #

实验2

摘要: 任务1: t.h: 1 #pragma once 2 #include <string> 3 class T { 4 public: 5 T(int x = 0, int y = 0); 6 T(const T &t); 7 T(T &&t); 8 ~T(); 9 10 void adjust(in 阅读全文

posted @ 2024-10-29 17:36 絮尘。 阅读(5) 评论(0) 推荐(0) 编辑

2024年10月13日 #

实验1现代c++初体验

摘要: 实验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 out 阅读全文

posted @ 2024-10-13 18:10 絮尘。 阅读(9) 评论(0) 推荐(0) 编辑