2809:斐波那契数列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){ int k,f1=1,f2=1,f3; scanf(&…… 题解列表 2025年11月13日 1 点赞 0 评论 375 浏览 评分:0.0
简单易懂求奇偶和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,j,o,a=0,b=0; scanf("%d",&n); f…… 题解列表 2025年11月13日 2 点赞 0 评论 237 浏览 评分:0.0
寻找矩阵的最值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define NUM 200int MAX(int arr[][NUM],int n){ int max = arr[0]…… 题解列表 2025年11月13日 0 点赞 0 评论 249 浏览 评分:0.0
初学py,注意输入的问题 摘要:解题思路:注意事项:参考代码:res=float(input())a=input().strip()b=input().…… 题解列表 2025年11月15日 0 点赞 0 评论 229 浏览 评分:0.0
初学py,在 Python 中操作 ASCII 摘要:解题思路:注意事项:参考代码:p=input()ans=""iflen(p)==2:print(chr(or…… 题解列表 2025年11月15日 0 点赞 0 评论 257 浏览 评分:0.0
蓝桥杯2025年第十六届省赛真题-抽奖 摘要:解题思路: 创建两个二维数组,分别存放转盘编号(大小为3*n)和抽奖次数(大小为m*3)。 创建一个数组temp大小为3,用于存放每次抽奖3个转盘的结果。再创建数组pionte…… 题解列表 2025年11月15日 1 点赞 0 评论 634 浏览 评分:0.0
2240:删除数组零元素 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int num[1000]={};int CompactIntegers(int n,int arr[1000]);int …… 题解列表 2025年11月17日 0 点赞 0 评论 142 浏览 评分:0.0
双for循环在用%e直接就秒了, 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double sum_of=0;//代表和double number;int main(){ &nb…… 题解列表 2025年11月17日 0 点赞 0 评论 244 浏览 评分:0.0
经典的选择排序算法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 10int main() { int a[N],i,j,k,temp;&nbs…… 题解列表 2025年11月17日 1 点赞 0 评论 593 浏览 评分:0.0
需要注意转置的条件 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 3int main() { int a[N][N],i,j,temp;&nbs…… 题解列表 2025年11月17日 1 点赞 0 评论 439 浏览 评分:0.0