MountainsHao
MountainsHao
全部文章
分类
归档
标签
去牛客网
登录
/
注册
MountainsHao的博客
全部文章
(共74篇)
题解 | #成绩排序#
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct student { int score; char name[200]; } student; ...
2024-04-03
0
202
题解 | #字符串去特定字符#
#include <stdio.h> #include <string.h> int main() { char a[1000]; while (scanf("%999s", a) != EOF) { int len = ...
2024-04-01
0
257
题解 | #求最大值#
#include <stdio.h> #include <stdlib.h> int cmp(const void *a,const void *b){ return *((int *)a)-*((int*)b); } int main() { int a...
2024-04-01
0
207
题解 | #素数判定#
#include <stdio.h> #include <stdbool.h> bool isPrime(int n) { if (n < 2) { return false; } else { for (int i =...
2024-04-01
0
212
题解 | #互换最大最小数#
#include <stdio.h> #include <stdlib.h> int main() { int a[25], n; while (scanf("%d", &n) != EOF) { int ...
2024-04-01
0
232
题解 | #百鸡问题#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { for (int i = 0; i < 101; i++) { ...
2024-04-01
0
166
题解 | #寻找大富翁#
#include <stdio.h> #include <stdlib.h> int cmp(const void* a, const void* b) { return *((int*)b) - *((int*)a); } int main() { in...
2024-03-31
0
199
题解 | #简单计算器#
#include <stdio.h> int main() { double a, s[300], sum, temp; char op; while (scanf("%lf", &a) != EOF) { if (a...
2024-03-31
0
198
题解 | #字符串排序#
#include<stdio.h> #include <string.h> void swap(char* str1, char* str2, size_t size) { char temp[size]; strcpy(temp, str1); s...
2024-03-29
0
192
题解 | #买房子#
#include <stdio.h> int main() { int n, k; while (scanf("%d %d", &n, &k) != EOF) { int year = 1; doubl...
2024-03-29
0
181
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页