题解列表
2809:斐波那契数列
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){ int k,f1=1,f2=1,f3; scanf(&……
初学py,注意输入的问题
摘要:解题思路:注意事项:参考代码:res=float(input())a=input().strip()b=input().……
初学py,在 Python 中操作 ASCII
摘要:解题思路:注意事项:参考代码:p=input()ans=""iflen(p)==2:print(chr(or……
蓝桥杯2025年第十六届省赛真题-抽奖
摘要:解题思路: 创建两个二维数组,分别存放转盘编号(大小为3*n)和抽奖次数(大小为m*3)。 创建一个数组temp大小为3,用于存放每次抽奖3个转盘的结果。再创建数组pionte……
2240:删除数组零元素
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int num[1000]={};int CompactIntegers(int n,int arr[1000]);int ……
双for循环在用%e直接就秒了,
摘要:解题思路:注意事项:参考代码:#include<stdio.h>double sum_of=0;//代表和double number;int main(){ &nb……