10 2021 档案

摘要:task5.hpp #ifndef INFO_HPP #define INFO_HPP #include <iostream> #include <string> #include <iomanip> using namespace std; class Info { public: Info(st 阅读全文
posted @ 2021-10-30 20:35 Rwang0 阅读(58) 评论(3) 推荐(1)
摘要:#include<iostream> #include<math.h> using namespace std; class Complex { public: Complex(double r=0,const double i=0) { real=r; imag=i; } Complex(cons 阅读全文
posted @ 2021-10-24 22:57 Rwang0 阅读(50) 评论(3) 推荐(2)