题解列表
题解 1196: 去掉空格
摘要:参考代码:#include<stdio.h>#include<string.h>#define N 80 typedef char str[N]; //重定义一个含有80个元素的字符数组 v……
题解 1476: 蓝桥杯基础练习VIP-龟兔赛跑预测
摘要:解题思路:这题需要注意的问题很多,比如在兔子休息的时候乌龟到了终点这样的情况,不能忽略,不然只能对73%,然后就是分情况判断需要全面注意事项:参考代码:#includeint main(){ int ……
编写题解 1012: [编程入门]字符串分类统计
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[200]; int i; int c=0,v=0,b=0,n=0; for(i=0;i<=20……
1126: C语言训练-字符串正反连接-题解(python)
摘要:解题思路:字符串切片的使用注意事项:参考代码:a = input()b = a[::-1]c = a+bprint(c)……
[编程入门]猴子吃桃的问题(简单的递归)【C语言】
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int func(int n){ if(n==1) return 1; else return(func(n-1)+1)*2;}//函数……
蓝桥杯算法提高VIP-复数求和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#define I sizeof(struct a)……
蓝桥杯算法训练VIP-链表数据求和操作
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<malloc.h>#define I sizeof(struct a)struct a{ int s; int x; ……