摘要: task2 Person.h #pragma once #include<iostream> #include<string> using namespace std; class Person { private: string name, telephone, email ; public: P 阅读全文
posted @ 2021-12-12 22:06 remake/ 阅读(22) 评论(1) 推荐(0) 编辑
摘要: 实验三 Car.hpp #pragma once #include<iostream> #include<string> #include<iomanip> using namespace std; class Car { public: Car(string _maker, string _mod 阅读全文
posted @ 2021-11-25 08:09 remake/ 阅读(38) 评论(1) 推荐(0) 编辑
摘要: 实验4 vector_int.hpp #pragma once #include<iostream> using namespace std; class Vector_int { public: Vector_int(int _size, int _value = 0); Vector_int(c 阅读全文
posted @ 2021-11-06 12:08 remake/ 阅读(14) 评论(2) 推荐(0) 编辑
摘要: task6.cpp #include"textcoder.hpp" #include<iostream> #include<string> int main() { using namespace std; string text, encoded_text, decoded_text; cout 阅读全文
posted @ 2021-10-31 16:57 remake/ 阅读(27) 评论(2) 推荐(0) 编辑
摘要: 实验任务3#pragma once #include<iostream> class Complex { public: Complex(double r, double i = 0); Complex(const Complex& c); Complex() {} double get_real( 阅读全文
posted @ 2021-10-25 08:43 remake/ 阅读(56) 评论(3) 推荐(0) 编辑