10 2021 档案
实验2 数组、指针与C++标准库
摘要:实验任务5 "info.hpp" #include <iostream> #include <string> using namespace std; class Info { public: Info (string nina, string con, string ci, int num = 0 阅读全文
posted @ 2021-10-30 10:33 Yukito0209 阅读(26) 评论(3) 推荐(1)
实验1 类与对象
摘要:实验任务3 "Complex.hpp": #include<iostream> #include<cmath> using namespace std; class Complex { public: Complex (double a = 0.0,double b = 0.0): real{a}, 阅读全文
posted @ 2021-10-24 17:52 Yukito0209 阅读(42) 评论(3) 推荐(0)