coder_bai
coder_bai
全部文章
分类
归档
标签
去牛客网
登录
/
注册
coder_bai的博客
全部文章
(共59篇)
题解 | #特殊排序#
#include <bits/stdc++.h> using namespace std; const int MAXN = 200; int arr[MAXN]; int main() { int n = 0; scanf("%d", &n); for (i...
2023-01-03
0
306
题解 | #成绩排序#
#define _CRT_SECURE_NO_WARNINGS 1 #include <bits/stdc++.h> using namespace std; struct student { string name; int score; int order; ...
2023-01-03
0
256
题解 | #成绩排序#
#include <bits/stdc++.h> using namespace std; struct student { int num; int score; }; const int MAXN = 100 + 10; student arr[MAXN]; bo...
2023-01-02
0
194
题解 | #排序#
#include <bits/stdc++.h> using namespace std; const int MAXN = 100; int arr[MAXN]; int main() { int n = 0; while (scanf("%d", &n) != EO...
2023-01-02
0
222
题解 | #日期累加#
#include <bits/stdc++.h> using namespace std; int mouth_day[2][13] {{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, 31,...
2023-01-01
0
259
题解 | #打印日期#
#include <bits/stdc++.h> using namespace std; int mouth_day[2][13] {{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, 31,...
2023-01-01
0
266
题解 | #今年的第几天?#
#include <bits/stdc++.h> using namespace std; int mouth_day[2][13] {{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, 31,...
2023-01-01
0
288
题解 | #百鸡问题#
#include <bits/stdc++.h> using namespace std; int main() { int n = 0; cin >> n; float sum = 0; for (int x = 0; x <= 100...
2022-12-31
0
237
题解 | #与7无关的数#
#include <bits/stdc++.h> using namespace std; int main() { int sum = 0; int n = 0; cin >> n; for (int i = 1; i <= n; ++...
2022-12-31
0
233
首页
上一页
1
2
3
4
5
6
下一页
末页