大小写转换-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数 ```python while True: s=input() if s=="End of file": break pr…… 题解列表 2020年04月13日 1 点赞 1 评论 1179 浏览 评分:4.3
蓝桥杯2019年第十届真题-后缀表达式-题解(C++代码) 摘要:分4种情况, 1. 减号=0,没办法只能全部加起来 2. 负数数目=0,排除了第1种情况,有减号,所以一定是其他数的和-最小的数 3. 全为负数,这种最容易忽略,排除上述2种情况,所以只要有减号…… 题解列表 2020年04月14日 0 点赞 0 评论 2219 浏览 评分:4.3
蓝桥杯2019年第十届真题-修改数组-题解(C语言代码) 摘要:解题思路:#include <iostream> #include <queue> using namespace std; int n; int all[100010]; int vis[…… 题解列表 2020年10月24日 0 点赞 1 评论 922 浏览 评分:4.3
c++的答案liiuleshi 摘要:解题思路:公式注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ double n; cin>>n; printf("c…… 题解列表 2022年08月11日 0 点赞 1 评论 225 浏览 评分:4.3
题解 2758: 打印ASCII码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a = 0; scanf("%c\n", &a); printf("%d\n", a); return…… 题解列表 2023年03月01日 0 点赞 0 评论 810 浏览 评分:4.3
三个数最大值 摘要:解题思路:条件表达式注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d; scanf("%d%d%d",&a,…… 题解列表 2025年02月15日 36 点赞 2 评论 3959 浏览 评分:4.3
蓝桥杯算法提高VIP-夺宝奇兵 (C语言代码) 摘要:解题思路:动态规划的经典题目。自己去了解注意事项:参考代码:#include<stdio.h>void main(){int N,j,i,shan[110][110];scanf("%d",&N);f…… 题解列表 2018年02月21日 0 点赞 0 评论 2040 浏览 评分:4.4
优质题解 数列排序 (Java代码) 摘要:解题思路:以第一项为基础,每读入一个数,就和第一项作比较,如果比第一项大,就直接保存在数组中,如果比第一项小就将数组中已有的数字向后移动一位,把当前读入的数放在第一位;注意事项:参考代码:import…… 题解列表 2018年05月08日 4 点赞 0 评论 1834 浏览 评分:4.4
蛇形填数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int j; int a[100][100] = { 0 …… 题解列表 2018年05月29日 2 点赞 0 评论 1725 浏览 评分:4.4
蓝桥杯历届试题-回文数字 (C++描述,超级好理解的代码,要耐心看完,套路问题,初学者都会,最简方法) 摘要:解题思路:一共运行了9*10*10*2次,就是把n拆成回文串的形式,而不是在10000和100000之间一个一个的找满足条件的回文串,这里运用到的就是循环嵌套注意事项:在for循环中定义需要的参数最终…… 题解列表 2018年11月15日 11 点赞 4 评论 1078 浏览 评分:4.4