bcxp
bcxp
全部文章
题解
归档
标签
去牛客网
登录
/
注册
bcxp的博客
全部文章
/ 题解
(共72篇)
题解 | #创建动态数组#
#include <iostream> using namespace std; int main() { int n; cin >> n; // write your code here...... int *arr=new i...
2022-03-31
0
279
题解 | #创建二维动态数组#
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; // write your code here...... //创建一个动态二维数组 int...
2022-03-31
0
259
题解 | #结构体简单使用#
#include <iostream> #include <string> using namespace std; struct student { // write your code here...... string name; int ag...
2022-03-31
0
271
题解 | #C++选择排序#
#include <iostream> using namespace std; int main() { int arr[6] = { 0 }; int len = sizeof(arr) / sizeof(int); for (int i = 0...
2022-03-31
0
309
题解 | #返回 2020 年 1 月的所有订单的订单号和订单日期#
模糊查询 select order_num,order_date from Orders where order_date in( select order_date from Orders where order_date like '2020-01%' ) order b...
2022-03-30
0
279
题解 | #顾客登录名#
select cust_id,cust_name, upper(concat(left(cust_contact,2),left(cust_city,3))) as user_login from Customers; /* upper():小写转大写 concat(s1,s2):连接两个字符串 ...
2022-03-30
19
445
题解 | #数组元素反转#
using namespace std; int main() { int arr[6] = { 0 }; int len = sizeof(arr) / sizeof(int); for (int i = 0; i < len; i++) { ...
2022-03-30
0
319
题解 | #获取数组最值#
using namespace std; #include <algorithm> int main() { int arr[6] = { 0 }; int len = sizeof(arr) / sizeof(int); for (int i = ...
2022-03-30
0
360
题解 | #判断一个数是不是质数#
using namespace std; #include <cmath> bool isPrime(int n) { if(n==2||n==3) { return true; } if(n%6!=1&&n%6!=5) ...
2022-03-29
0
385
题解 | #数列求和#
using namespace std; int main() { // write your code here...... long long num=0; long long temp=9; long long sum=0; for(int i=0;...
2022-03-27
0
215
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页