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