C语言考试练习题_保留字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char name[100]; scanf(&q…… 题解列表 2025年12月11日 0 点赞 0 评论 206 浏览
1002: 三个数最大值 摘要:解题思路:三目运算注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int max=0; scanf("%d %d %d&quo…… 题解列表 2025年12月11日 5 点赞 0 评论 938 浏览
2086: 最长公共子序列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int max(int x,int y){ ret…… 题解列表 2025年12月11日 0 点赞 0 评论 183 浏览
3048: 抓住那头牛 摘要:解题思路:广度优先算法,使用队列的结构注意事项:注意更新状态数组v[MAX_POS+1]参考代码:#include<stdio.h>#include<string.h>#def…… 题解列表 2025年12月11日 0 点赞 0 评论 207 浏览
1051: [编程入门]结构体之成绩统计2 摘要:#include<stdio.h>typedefstructGrade{char…… 题解列表 2025年12月10日 2 点赞 0 评论 543 浏览
1493: 蓝桥杯算法提高VIP-任意年月日历输出 摘要:#include<stdio.h>inta[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};int …… 题解列表 2025年12月10日 1 点赞 0 评论 310 浏览
1536: 蓝桥杯算法提高VIP-最长单词 摘要:#include<stdio.h>#include<string.h>#define N 200000char s[N];int main(){ in…… 题解列表 2025年12月10日 0 点赞 0 评论 238 浏览
1049: [编程入门]结构体之时间设计 摘要:#include <stdio.h>#include <string.h>#include<math.h>#define PI 3.1415int main(){ …… 题解列表 2025年12月10日 1 点赞 0 评论 544 浏览
1754: 字符串排序 摘要:#include<stdio.h>#include<string.h>#include<stdlib.h>#defi…… 题解列表 2025年12月10日 0 点赞 0 评论 324 浏览