10 2022 档案

摘要:#include "info.hpp" #include <iostream> #include<vector> #include<cstring> int main() { int count=0; const int capacity=100; vector<Info>audience_info 阅读全文
posted @ 2022-10-25 20:37 动次打次的动点P
摘要:实验任务4: Complex.hpp: #pragma once #include<iostream> #include<string> #include<iomanip> #include<math.h> using namespace std; class Complex { public: C 阅读全文
posted @ 2022-10-15 13:01 动次打次的动点P 阅读(22) 评论(0) 推荐(0)
摘要:#include "Complex.hpp" #include <iostream> void test() { using namespace std; Complex c1(3, -4); const Complex c2(4.5); Complex c3(c1); cout << "c1 = 阅读全文
posted @ 2022-10-12 17:00 动次打次的动点P 阅读(30) 评论(0) 推荐(0)
摘要:实验任务2: #include<iostream> using namespace std; class Point {public: Point(int x0 = 0, int y0 = 0); Point(const Point&p ); ~Point() = default; int get_ 阅读全文
posted @ 2022-10-05 15:56 动次打次的动点P 阅读(9) 评论(0) 推荐(0)