在抱佛脚的海豚很想吃烤肉
在抱佛脚的海豚很想吃烤肉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在抱佛脚的海豚很想吃烤肉的博客
全部文章
(共41篇)
题解 | #特殊排序#
#include <stdio.h> void Ascending(int a[], int b) { while (b--) { for (int j = 0; j < b; j++) { if (a[j] > a[j + 1...
2023-02-07
0
301
题解 | #成绩排序#
#include <stdio.h> #define MAXSIZE 30 typedef struct test { char a[MAXSIZE]; int number; } Grade; int main() { int n; while ((sc...
2023-02-05
0
266
题解 | #成绩排序#
#include <stdio.h> int main() { int n; scanf("%d", &n); int i = 0; int Arr[n][2]; while (i < n) { for (int j = 0;...
2023-02-05
0
244
题解 | #日期差值#
#include <stdio.h> #include<stdbool.h> //每月天数 int table[2][13] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29...
2023-02-04
0
256
题解 | #排序#
#include <stdio.h> int main() { int n; while ((scanf("%d", &n)) != EOF) { int Arr[n]; for (int i = 0; i < n; i++) { ...
2023-02-04
0
323
题解 | #Grading#
#include <stdio.h> #include <stdlib.h> // 求平均数: float Average(int a, int b) { return ((a + b) / 2.0); } // 求最大值: int Max(int a, int b,...
2023-02-04
0
221
题解 | #xxx定律#
#include <stdio.h> int main() { int number; int count = 0; while ((scanf("%d", &number)) != EOF) { while (number != 1) { ...
2023-02-04
0
224
题解 | #手机键盘#
#include <stdio.h> #include <string.h> #include <stdlib.h> int main() { int Arr[26] = {1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2,...
2023-02-04
0
274
题解 | #剩下的树#
#include <stdio.h> #include<stdbool.h> int main() { int number, count; scanf("%d %d", &number, &count); bool Arr[number]; ...
2023-02-03
0
250
题解 | #日期类#
#include <stdio.h> int table[2][13] = {{0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, ...
2023-02-03
0
232
首页
上一页
1
2
3
4
5
下一页
末页