bcxp
bcxp
全部文章
分类
题解(72)
归档
标签
去牛客网
登录
/
注册
bcxp的博客
TA的专栏
5篇文章
0人订阅
算法刷题笔记Java
5篇文章
439人学习
全部文章
(共154篇)
题解 | #确定哪些订单购买了 prod_id 为 BR01 的产品(一)#
select cust_id,order_date from Orders where order_num in( select order_num from OrderItems where prod_id='BR01' ) order by order_date asc;
2022-04-03
0
318
题解 | #数组类的拷贝构造函数#
#include<bits/stdc++.h> using namespace std; class Array{ private: int n;//数组大小 int *a;//数组 public: Array(){ cin>>n; a=new...
2022-04-02
3
411
题解 | #浅拷贝和深拷贝#
#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
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页