10 2021 档案
C++实验2
摘要:1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<iomanip> 5 using namespace std; 6 7 class info { 8 private: 9 string nickname, c 阅读全文
posted @ 2021-10-30 23:34 wlj23 阅读(70) 评论(3) 推荐(0)
博客园地址
摘要:https://www.cnblogs.com/aacgll/ 阅读全文
posted @ 2021-10-27 17:13 wlj23 阅读(66) 评论(0) 推荐(0)
C++实验一类与对象
摘要:第三题 1 #ifndef cOMPLEX_HPP 2 #define cOMPLEX_HPP 3 #include<iostream> 4 #include<cmath> 5 6 class my_complex { 7 public: 8 my_complex() = default; 9 my 阅读全文
posted @ 2021-10-21 19:29 wlj23 阅读(83) 评论(3) 推荐(0)