shininggirls01
shininggirls01
全部文章
分类
归档
标签
去牛客网
登录
/
注册
shininggirls01的博客
全部文章
(共49篇)
题解 | #特殊乘法#
#include <iostream> using namespace std; int main() { string str1, str2; int sum = 0; char a = '0'; while (cin >> str1 &...
2024-01-29
0
156
题解 | #查找#
#include <iostream> using namespace std; int main() { int n; while (scanf("%d", &n) != EOF) { int arr[n]; ...
2024-01-27
0
195
题解 | #找x#
#include <iostream> using namespace std; int main() { int n; while (scanf("%d", &n) != EOF) { int arr[n]; ...
2024-01-27
0
157
题解 | #成绩排序#
#include <iostream> #include<algorithm> #include<cstdio> using namespace std; typedef struct Student { string name; int scor...
2024-01-27
0
170
题解 | #成绩排序#
#include <iostream> #include<algorithm> typedef struct student{ int snum; int score; }; using namespace std; bool Compare(student ...
2024-01-27
0
168
题解 | #成绩排序#
#include <iostream> #include<algorithm> typedef struct student{ int snum; int score; }; using namespace std; void sort_arr(student...
2024-01-27
0
171
题解 | #排序#
#include <iostream> using namespace std; void sort_arr(int arr[],int length){ int maxNum=arr[0]; for(int i=0;i<length;i++){ ...
2024-01-27
0
178
题解 | #xxx定律#
#include <iostream> using namespace std; int main() { int n,stepNmub=0; while(scanf("%d",&n)!=EOF){ if(n==0) b...
2024-01-21
0
175
题解 | #手机键盘#
#include <iostream> using namespace std; int main() { int keyTab[26] = {1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 4, 1, 2, 3, ...
2024-01-21
0
157
题解 | #剩下的树#
#include <iostream> using namespace std; int main() { int L,M,sum; int minNum,maxNum; int tree[10001]; for(int i=0;i<10001;...
2024-01-21
0
142
首页
上一页
1
2
3
4
5
下一页
末页