摘要: Task2 Person.hpp #include<bits\stdc++.h> using namespace std; class Person { public: Person(); Person(string _name,string _telephone):name(_name),tele 阅读全文
posted @ 2021-12-12 07:59 Sunshine、烈焰 阅读(23) 评论(2) 推荐(0) 编辑
摘要: Car.hpp #pragma once #include<iostream> #include<string> using namespace std; class Car { private: string maker; string model; int year; int odometers 阅读全文
posted @ 2021-11-24 22:00 Sunshine、烈焰 阅读(29) 评论(2) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; class Vector_int { private: int *arrayAd; int length; public: Vector_int(const int &B); Vector_int(const 阅读全文
posted @ 2021-11-04 12:21 Sunshine、烈焰 阅读(10) 评论(3) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; class Info { private: string nickname; string contact; string city; int n; public: Info(string a,string b 阅读全文
posted @ 2021-10-27 22:51 Sunshine、烈焰 阅读(36) 评论(3) 推荐(0) 编辑
摘要: https://www.cnblogs.com/HSZ666/ 阅读全文
posted @ 2021-10-27 16:09 Sunshine、烈焰 阅读(33) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cmath>using namespace std; class Complex{private: double real; double imag;public: Complex(double a=0,double b=0):real(a 阅读全文
posted @ 2021-10-24 16:21 Sunshine、烈焰 阅读(31) 评论(3) 推荐(0) 编辑