10 2022 档案

摘要:实验任务五 info.hpp: 1 #pragma once 2 #include<iostream> 3 #include<iomanip> 4 using namespace std; 5 class info { 6 string nickname; 7 string contact; 8 s 阅读全文
posted @ 2022-10-22 16:57 RICHENGG 阅读(12) 评论(0) 推荐(0)
摘要:实验任务4 Complex.hpp文件源码: 1 #pragma once 2 #include<iostream> 3 using namespace std; 4 class Complex { 5 public: 6 Complex(); 7 Complex(double real0, dou 阅读全文
posted @ 2022-10-13 10:30 RICHENGG 阅读(41) 评论(0) 推荐(0)
摘要:实验任务二 1 #include<iostream> 2 3 using std::cout; 4 using std::cin; 5 using std::endl; 6 class Point { 7 public: 8 Point(int x0 = 0, int y0 = 0); 9 Poin 阅读全文
posted @ 2022-10-03 21:35 RICHENGG 阅读(30) 评论(0) 推荐(0)