bcxp
bcxp
全部文章
题解
归档
标签
去牛客网
登录
/
注册
bcxp的博客
全部文章
/ 题解
(共72篇)
题解 | #浅拷贝和深拷贝#
#include <iostream> #include <cstring> #pragma warning(disable : 4996) using namespace std; class Person { public: char* nam...
2022-04-02
0
285
题解 | #数组类的构造函数#
#include<bits/stdc++.h> using namespace std; class Array{ private: int n;//数组大小 int *a;//数组 public: // write your code here...... ...
2022-04-02
11
395
题解 | #构造函数#
#include <iostream> #include <string> using namespace std; // Person类 class Person { public: string name; // 姓名 i...
2022-04-02
0
339
题解 | #计算总和#
select order_num,sum(item_price*quantity) as total_price from OrderItems /* where条件语句后面不能加聚合函数(分组函数) having 不能单独使用,必须和group by 联合使用 */ group by order...
2022-04-02
0
291
题解 | #长方形的关系#
this指针的使用 #include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ lengt...
2022-04-02
0
372
题解 | #比较长方形的面积大小#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ length=x; wi...
2022-04-02
2
319
题解 | #点和圆的关系#
#include <iostream> using namespace std; #include<cmath> // 点类 class Pointer { private: int x; // x 坐标 int y; // y ...
2022-04-02
0
313
题解 | #设计立方体类#
#include <iostream> using namespace std; class Cube { // write your code here...... private://成员变量一般不允许外界直接访问 int length; int widt...
2022-04-02
0
283
题解 | #编写函数实现字符串翻转(引用方式)#
#include<bits/stdc++.h> using namespace std; // write your code here...... void reverse_string(string & s) { int len=s.length(); for...
2022-04-02
5
388
题解 | #编写函数实现两数交换(引用方式)#
#include <iostream> using namespace std; // write your code here...... void swap_int(int &a,int &b) { int temp=a; a=b; b=te...
2022-04-02
0
247
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页