sidsung
sidsung
全部文章
分类
归档
标签
去牛客网
登录
/
注册
sidsung的博客
全部文章
(共49篇)
题解 | #多态实现计算器功能#
#include <iostream> using namespace std; class BaseCalculator { public: int m_A; int m_B; // write your code here.....
2023-02-03
0
318
题解 | #求长方体表面积#
#include<bits/stdc++.h> using namespace std; class rectangle { private: int length, width; public: rectangle(int x, int y) { ...
2023-02-03
0
290
题解 | #构建长方体类#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: rectangle(int x,int y){ length=x; w...
2023-02-03
0
285
题解 | #重写子类计算逻辑#
#include <iostream> using namespace std; class Base { private: int x; int y; public: Base(int x, int y) { this->x = x;...
2023-02-02
0
214
题解 | #子类中调用父类构造#
#include <iostream> using namespace std; class Base { private: int x; int y; public: Base(int x, int y) { ...
2023-02-02
0
284
题解 | #重载小于号#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() { hour...
2023-02-02
0
295
题解 | #加号运算符重载#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() { hour...
2023-02-01
0
264
题解 | #数组类的拷贝构造函数#
#include<bits/stdc++.h> using namespace std; class Array { private: int n;//数组大小 int* a;//数组 public: Array() { cin >&...
2023-02-01
0
233
题解 | #数组类的构造函数#
#include<bits/stdc++.h> using namespace std; class Array { private: int n;//数组大小 int* a;//数组 public: // write your code here.......
2023-02-01
0
254
题解 | #编写函数实现字符串翻转(引用方式)#
#include<bits/stdc++.h> using namespace std; // write your code here...... void revers(string& s) { for (int i = 0; i < (s.length() / 2);...
2023-01-17
0
275
首页
上一页
1
2
3
4
5
下一页
末页