蓝桥杯历届试题-回文数字 摘要:解题思路:因为他要求是用五位数或六位数表示所输入的数字,所以我们可以把他分为两个三位数进行判断,对递归比较熟练的可以选择通过递归进行计算,最后记得需要定义一个数来判断这个是是否有解注意事项:注意五位数…… 题解列表 2022年10月26日 0 点赞 0 评论 383 浏览 评分:9.9
1120: C语言训练-"水仙花数"问题2 摘要:```cpp #include using namespace std; int main() { int num, a, b, c; for ( num = …… 题解列表 2022年10月26日 0 点赞 0 评论 415 浏览 评分:0.0
1119: C语言训练-"水仙花数"问题1 摘要:```cpp #include using namespace std; int main() { int num, a, b, c; cin >> num; a…… 题解列表 2022年10月26日 0 点赞 0 评论 399 浏览 评分:0.0
最简单求法 摘要:解题思路: 初步判断: 想要最简分数,必须是一个奇数 一个偶数。40是偶数,分子必须是奇数。但并不是所有的奇数不能被40整除 再次判断: & 题解列表 2022年10月26日 0 点赞 0 评论 471 浏览 评分:9.9
编写题解 2904: 谁拿了最多奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct student{ char name[20]…… 题解列表 2022年10月26日 0 点赞 0 评论 350 浏览 评分:0.0
二级C语言-平均值计算 摘要:``` #include using namespace std; int main() { int arr[10], sum = 0; for (int i = 0; …… 题解列表 2022年10月26日 1 点赞 0 评论 400 浏览 评分:10.0
字符串正反连接(简单C++) 摘要:#include<iostream> using namespace std; #include<string.h> int main() { char s1[50],s2[50];…… 题解列表 2022年10月26日 0 点赞 0 评论 647 浏览 评分:9.3
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 445 浏览 评分:0.0
编写题解 2903: 不高兴的津津 摘要:解题思路:注意事项:max>8参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct Time{ int stime; …… 题解列表 2022年10月26日 0 点赞 0 评论 419 浏览 评分:0.0
-委派任务(数学题,我直接输出了) 摘要:#include<iostream> using namespace std; int main() { cout<<"A,B,C,F,"; return 0; }解题思路…… 题解列表 2022年10月26日 0 点赞 0 评论 518 浏览 评分:6.0