Love_YourZ
Love_YourZ
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Love_YourZ的博客
全部文章
/ 题解
(共80篇)
题解 | #构造函数#
#include <iostream> #include <string> using namespace std; // Person类 class Person { public: string name; // 姓名 i...
C++
2022-04-02
0
305
题解 | #长方形的关系#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ length=x; wi...
C++
2022-04-02
0
343
题解 | #长方形的关系#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ length=x; wi...
C++
2022-04-02
0
332
题解 | #长方形的关系#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ length=x; wi...
C++
2022-04-02
0
250
题解 | #比较长方形的面积大小#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ length=x; wi...
C++
2022-04-02
0
308
题解 | #点和圆的关系#
#include <iostream> using namespace std; // 点类 class Pointer { private: int x; // x 坐标 int y; // y 坐标 public: ...
C++
2022-04-02
0
399
题解 | #设计立方体类#
#include <iostream> using namespace std; class Cube { // write your code here...... private: int length; int width; ...
C++
2022-04-02
0
208
题解 | #编写函数实现字符串翻转(引用方式)#
#include<bits/stdc++.h> using namespace std; // write your code here...... void strback(string &s){ int len=s.length(); for(int i=0;...
C++
2022-04-01
0
261
题解 | #编写函数实现字符串翻转(引用方式)#
#include<bits/stdc++.h> using namespace std; // write your code here...... void strback(string &s){ int len=s.length(); for(int i=0;...
C++
2022-04-01
0
248
题解 | #编写函数实现两数交换(引用方式)#
#include <iostream> using namespace std; // write your code here...... void swap(int &m,int &n){ int t=m; m=n; n=t; } int ...
C++
2022-04-01
0
235
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页