摘要: task2.cpp源码 #include <iostream> #include <typeinfo> // definitation of Graph class Graph { public: void draw() { std::cout << "Graph::draw() : just as 阅读全文
posted @ 2021-11-24 17:25 今天没画画bot 阅读(48) 评论(2) 推荐(0) 编辑
摘要: task4.cpp源码 #include<iostream> #include"vector_int.hpp" using namespace std; int main(){ Vector_int x(5); cout<<"x(0)="<<x.at(0)<<endl; Vector_int x1( 阅读全文
posted @ 2021-11-07 14:48 今天没画画bot 阅读(44) 评论(2) 推荐(0) 编辑
摘要: task5 task5.cpp源码 #include"info.cpp" #include<vector> using namespace std; int main(){ vector<Info> audience_info_list; string name1,contact1,city1; c 阅读全文
posted @ 2021-10-31 18:20 今天没画画bot 阅读(55) 评论(2) 推荐(0) 编辑
摘要: task3 Complex.hpp源码 #include<iostream> #include<cmath> using namespace std; class Complex { public: Complex(float newReal,float newImag); Complex(); C 阅读全文
posted @ 2021-10-22 09:19 今天没画画bot 阅读(25) 评论(6) 推荐(0) 编辑