二级C语言-统计字符-题解(C语言代码) 摘要:```c #include #include int main() { char a[100]; int z = 0, s = 0, k = 0, q = 0; …… 题解列表 2020年09月29日 0 点赞 0 评论 314 浏览 评分:0.0
二级C语言-公约公倍-题解(C语言代码) 摘要:```c #include int main() { int yue(int a,int b); int bei(int a,int b); int a,b; …… 题解列表 2020年09月29日 0 点赞 0 评论 376 浏览 评分:0.0
蓝桥杯算法提高VIP-夺宝奇兵-题解(Python代码) 摘要:解题思路: 动态规划。注意事项: 走的路线从下到上只能走上面的或左上面。参考代码:n = int(input()) mapL = [list(map(int,input().split(…… 题解列表 2020年09月29日 0 点赞 0 评论 720 浏览 评分:7.3
二级C语言-等差数列-题解(C语言代码) 摘要:##直接上代码 ```c #include int main() { int dc(int n); int n,sum=0; scanf("%d",&n); …… 题解列表 2020年09月29日 0 点赞 0 评论 386 浏览 评分:0.0
蓝桥杯2019年第十届真题-完全二叉树的权值-题解(C++代码) 摘要: 我AC完看了一排的题解,发现都是基本都是一样的,有点失望 给大家分享一个简单整洁的思路。 递归求解版。。。 ```cpp #include using namespace s…… 题解列表 2020年09月29日 0 点赞 0 评论 723 浏览 评分:9.0
蓝桥杯算法提高VIP-大数加法-题解(Python代码) 摘要: 这道题感觉用python做就失去了意义。参考代码:print(int(input())+int(input()))…… 题解列表 2020年09月28日 0 点赞 0 评论 427 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和-题解(Python代码) 摘要:参考代码:n = int(input()) s,x = 0,0 for _ in range(n): a,b = map(int,input().split()) s += a…… 题解列表 2020年09月28日 0 点赞 0 评论 662 浏览 评分:9.9
蓝桥杯2013年第四届真题-错误票据-题解(C语言代码) 摘要:```cpp #include using namespace std; int main(){ int n,temp,i; int que,chong; int hash[1000…… 题解列表 2020年09月28日 0 点赞 0 评论 370 浏览 评分:0.0
C语言训练-尼科彻斯定理-题解(C语言代码) 摘要:```c #include #include int main(){ int b; while(scanf("%d",&b)!=-1){ int a=pow(b-1,2)+(b-1-1)…… 题解列表 2020年09月28日 0 点赞 0 评论 548 浏览 评分:9.9
字符逆序-题解(C语言代码) 摘要:解题思路:定义两个数组进行前后交换注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[100]; …… 题解列表 2020年09月28日 0 点赞 0 评论 325 浏览 评分:0.0