1593: 蓝桥杯算法训练VIP-Hankson的趣味题 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<math.h> #include<algorithm> using na…… 题解列表 2022年02月18日 0 点赞 0 评论 445 浏览 评分:0.0
1181: 不容易系列2 摘要:解题思路:两种方法 :一种用数学组合,一种用递归注意事项:参考代码:数学方法:def f(x): s=1 for i in range(1,x): s *=i …… 题解列表 2022年02月18日 0 点赞 0 评论 532 浏览 评分:0.0
编写题解 1182: 人民币问题 摘要:解题思路:注意事项:参考代码:n=int(input()) a=((n-3)//5) b=((n-6)//2) s=0 for i in range(1,a+1): for j in…… 题解列表 2022年02月18日 0 点赞 0 评论 387 浏览 评分:0.0
1000:简单的a+b 摘要:解题思路:简单的a+b注意事项:注意多项输入参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b))…… 题解列表 2022年02月18日 0 点赞 0 评论 419 浏览 评分:0.0
打字练习c++ 摘要:解题思路:记得换行注意事项:记得换行参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ cout<<…… 题解列表 2022年02月18日 0 点赞 0 评论 736 浏览 评分:0.0
编写题解 1002: [编程入门]三个数最大值--解题 摘要:解题思路:相互比较注意事项:参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ int a,b,c;…… 题解列表 2022年02月18日 0 点赞 0 评论 362 浏览 评分:0.0
编写题解 1044: [编程入门]三个字符串的排序--解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[3][128], tmp[128]; int i,…… 题解列表 2022年02月18日 0 点赞 0 评论 450 浏览 评分:0.0
省份证号升级 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <iostream>#include <string.h>using namespace std;int main(…… 题解列表 2022年02月18日 0 点赞 0 评论 437 浏览 评分:0.0
1502: 蓝桥杯算法提高VIP-利息计算(...........) 摘要: ```cpp #include using namespace std; int main() { double a, b; cin >> a >> b; p…… 题解列表 2022年02月18日 0 点赞 0 评论 460 浏览 评分:0.0
数据结构-链表的基本操作 摘要:```cpp #include #include //链表 typedef struct LNode{ int data; struct LNode *next; …… 题解列表 2022年02月18日 0 点赞 0 评论 562 浏览 评分:0.0