题解 2809: 菲波那契数列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int k){ if(k==1||k==2) { return 1; } return f(k-1)+f(k-…… 题解列表 2025年01月25日 0 点赞 0 评论 442 浏览 评分:0.0
题解 2804: 与指定数字相同的数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b[100],c,sum = 0; scan…… 题解列表 2025年01月25日 0 点赞 0 评论 180 浏览 评分:0.0
题解 2803: 整数的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main()…… 题解列表 2025年01月25日 0 点赞 0 评论 182 浏览 评分:0.0
题解 2802: 满足条件的数累加 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,sum = 0; scanf("…… 题解列表 2025年01月25日 0 点赞 0 评论 128 浏览 评分:0.0
题解 2801: 奇数求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,sum = 0; scanf("…… 题解列表 2025年01月25日 0 点赞 0 评论 345 浏览 评分:0.0
题解 2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b[1000],max,min; scanf…… 题解列表 2025年01月25日 0 点赞 0 评论 170 浏览 评分:0.0
题解 2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b[100],max=b[0]; scanf…… 题解列表 2025年01月25日 0 点赞 0 评论 235 浏览 评分:0.0
题解 2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b[100]; float sum=0; s…… 题解列表 2025年01月25日 0 点赞 0 评论 597 浏览 评分:0.0
题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b=0; scanf("%d&qu…… 题解列表 2025年01月25日 0 点赞 0 评论 184 浏览 评分:0.0
题解 2215: 蓝桥杯算法训练-1的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b=0; scanf("%d",&a); for (int …… 题解列表 2025年01月25日 0 点赞 0 评论 143 浏览 评分:0.0