2024年12月21日

实验6 模板类、文件I/O和异常处理

摘要: task1: 1 //Complex.hpp 2 #pragma once 3 4 #include <iostream> 5 #include <stdexcept> 6 7 // 声明 8 //////////////////////////////////////////////////// 阅读全文

posted @ 2024-12-21 21:30 nofear妈 阅读(3) 评论(0) 推荐(0) 编辑

2024年12月6日

实验5 继承和多态

摘要: task1 代码 1 #pragma once 2 #include <iostream> 3 #include <string> 4 using std::cout; 5 using std::endl; 6 using std::string; 7 // 发行/出版物类:Publisher (抽 阅读全文

posted @ 2024-12-06 22:26 nofear妈 阅读(5) 评论(0) 推荐(0) 编辑

2024年11月21日

实验4 类的组合、继承、模板类、标准库

摘要: task2: 代码: 1 #include <iostream> 2 #include <vector> 3 #include <string> 4 #include <algorithm> 5 #include <numeric> 6 #include <iomanip> 7 8 using st 阅读全文

posted @ 2024-11-21 13:07 nofear妈 阅读(11) 评论(0) 推荐(0) 编辑

2024年10月28日

实验二 类和对象_基础编程1

摘要: task1: 1 //t.h 2 #pragma once 3 #include<string> 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 void adjust(int r 阅读全文

posted @ 2024-10-28 16:07 nofear妈 阅读(10) 评论(0) 推荐(0) 编辑

2024年10月12日

实验1现代c++编程初体验

摘要: test1: 源代码: 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 using namespace std; 6 template<typename T> 7 void outp 阅读全文

posted @ 2024-10-12 17:06 nofear妈 阅读(29) 评论(0) 推荐(0) 编辑

导航