…201907250756207
…201907250756207
全部文章
分类
归档
标签
去牛客网
登录
/
注册
…201907250756207的博客
全部文章
(共25篇)
题解 | 成绩排序
// // Created by gs on 2026/3/6. // // HJ68 成绩排序 #include <stdio.h> #include <string.h> typedef struct { char name[21]; int sc...
2026-03-06
0
51
题解 | 查找兄弟单词
// // Created by gs on 2026/3/5. // // HJ27 查找兄弟单词 #include <stdio.h> #include <string.h> int is_brother(char* a, char* b) { int i...
2026-03-05
0
45
题解 | 字符串排序
// // Created by gs on 2026/3/5. // // HJ14 #include <stdio.h> #include <string.h> typedef struct { char word[102]; } AAA; int main...
2026-03-05
0
54
题解 | 合并表记录
// // Created by gs on 2026/3/5. // // HJ8 合并表记录 #include <stdio.h> int main() { int n, i = 0, j = 0; int aa[2][501] = {0}; scanf...
2026-03-05
0
46
题解 | 矩阵乘法计算量估算
// // Created by gs on 2026/3/5. // // HJ70 矩阵乘法计算量估算 #include <stdio.h> #include <string.h> int main() { int n = 0, i = 0, j = 0;...
2026-03-05
0
41
题解 | 排序
// // Created by gs on 2026/3/5. // // HJ101 排序 #include <stdio.h> int main() { int num = 0, sort = 0, temp, i = 0, j = 0; int buf[10...
2026-03-05
0
43
题解 | 整数与IP地址间的转换
// // Created by gs on 2026/3/4. // // HJ33 整数与IP地址间的转换 #include <stdio.h> #include <string.h> #include <stdlib.h> int main() { ...
2026-03-05
0
39
题解 | 整数与IP地址间的转换
// // Created by gs on 2026/3/4. // // HJ33 整数与IP地址间的转换 #include <stdio.h> #include <string.h> #include <stdlib.h> int main() { ...
2026-03-05
0
32
题解 | 字符个数统计
// // Created by gs on 2026/3/4. // // HJ10 字符个数统计 #include <stdio.h> #include <string.h> int main() { char buf[505]; int coun...
2026-03-04
0
38
题解 | 明明的随机数
// // Created by gs on 2026/3/4. // // HJ3 明明的随机数 #include <stdio.h> int main() { int n, a; short buf[1001]; short sort[1001]; ...
2026-03-04
0
39
首页
上一页
1
2
3
下一页
末页