10 2021 档案
实验二 数组、指针与c++标准库
摘要:task5: 1 #include<iostream> 2 #include<string> 3 #include<cstring> 4 #include<iomanip> 5 using namespace std; 6 7 class Info 8 { 9 public: 10 Info(str 阅读全文
posted @ 2021-10-29 13:56 Ancientwords 阅读(53) 评论(2) 推荐(0)
实验1 类与对象
摘要:#include <iostream> #include<cmath> using namespace std; class complex{ public: complex(double real=0, double imag=0):REAL{real},IMAG{imag}{} complex( 阅读全文
posted @ 2021-10-24 22:36 Ancientwords 阅读(36) 评论(3) 推荐(0)