ramily
ramily
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ramily的博客
TA的专栏
12篇文章
0人订阅
C++每日一练
12篇文章
368人学习
全部文章
(共81篇)
题解 | #统计字符串中各字母字符对应的个数#
#include <iostream> #include <map> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); ...
2023-01-13
0
317
题解 | #去除字符串中重复的字符#
#include <iostream> #include <set> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); ...
2023-01-13
1
239
题解 | #迭代器遍历容器#
#include <iostream> #include <vector> using namespace std; int main() { // 使用正向迭代器和反向迭代器分别遍历输出 vector 中的元素 vector<int> v;...
2023-01-13
0
269
题解 | #重写子类计算逻辑#
#include <iostream> using namespace std; class Base { private: int x; int y; public: Base(int x, int y) { this->x = x;...
2023-01-13
0
281
题解 | #加号运算符重载#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() ...
2023-01-13
0
336
题解 | #浅拷贝和深拷贝#
#include <iostream> #include <cstring> #pragma warning(disable : 4996) //忽视4996类警告问题 using namespace std; class Person { public: ...
2023-01-12
0
304
题解 | #点和圆的关系#
#include <iostream> using namespace std; // 点类 class Pointer { private: int x; // x 坐标 int y; // y 坐标 public: ...
2023-01-12
0
305
题解 | #设计立方体类#
#include <iostream> using namespace std; class Cube { // 设计一个立方体类(Cube) //定义立方体类的属性 private: int length; int width...
2023-01-12
0
237
题解 | #编写函数实现两数交换(引用方式)#
#include <iostream> using namespace std; // 编写函数实现两数交换(引用方式) void swap (int &m,int &n){ int temp = m; m = n; n = temp; } int main...
2023-01-12
0
296
题解 | #不死神兔问题#
#include <iostream> using namespace std; int getSum(int n); int main() { int n; cin >> n; cout << getSum(n) <<...
2023-01-12
0
259
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页