牛客182054830号
牛客182054830号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客182054830号的博客
全部文章
(共2篇)
题解 | #复数#
#include <iostream> using namespace std; class Complex { private: int a; int b; public: Complex(int i = 0, int j = 0) { ...
2023-03-27
1
290
题解 | #日期类# 类+运算符重载
#include <iostream> using namespace std; int m[13] = {0,31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; class Date { private: int year;...
2023-03-26
2
432