摘要: #pragma once #include<iostream> #include<string> #include<iomanip> using namespace std; class Person { public: Person() {} Person(string name_n, strin 阅读全文
posted @ 2021-12-12 17:08 Panyunyu 阅读(20) 评论(4) 推荐(0) 编辑
摘要: #ifndef __Car_HPP__ #define __Car_HPP__ #include<iostream> #include<string> #include<iomanip> using namespace std; class Car { public: Car(){} Car(str 阅读全文
posted @ 2021-11-28 14:29 Panyunyu 阅读(37) 评论(4) 推荐(0) 编辑
摘要: #ifndef __vector_int_HPP__ #define __vector_int_HPP__ #include<iostream> #include<cassert> using namespace std; class Vector_int { public: Vector_int( 阅读全文
posted @ 2021-11-09 16:59 Panyunyu 阅读(32) 评论(3) 推荐(0) 编辑
摘要: #include"music.hpp" #include<iostream> #include<vector> #include<string> int main() { using namespace std; const int capacity = 100; int n=0; int num; 阅读全文
posted @ 2021-11-02 19:11 Panyunyu 阅读(28) 评论(4) 推荐(0) 编辑
摘要: https://www.cnblog.com/Panyunyu/ 阅读全文
posted @ 2021-10-27 16:07 Panyunyu 阅读(11) 评论(1) 推荐(0) 编辑
摘要: #ifndef __Complex_HPP__ #define __Complex_HPP__ #include<iostream> #include<cmath> using namespace std; class Complex { public: Complex(); Complex(dou 阅读全文
posted @ 2021-10-26 22:35 Panyunyu 阅读(34) 评论(4) 推荐(0) 编辑