桥杯历届试题-回文数字 摘要:解题思路:暴力循环输出注意事项:参考代码:#include<stdio.h>int main(){ int m; scanf("%d",&m); int i,flag = 0; for(i = 10…… 题解列表 2021年10月17日 0 点赞 0 评论 113 浏览 评分:0.0
回文数字(递归求解,又臭又长,慎点) 摘要:#include<iostream>#include<string>using namespace std;int n;string sub(string s){ string m; for (int…… 题解列表 2021年09月13日 0 点赞 0 评论 148 浏览 评分:0.0
【C++较复杂版解法】回文数字且该数字的各个数位之和等于输入的整数 摘要:参考代码:#include <iostream> using namespace std; int main() { int n,num,sum,g,summ,count=0;//定义cou…… 题解列表 2021年06月22日 0 点赞 0 评论 214 浏览 评分:6.5
蓝桥杯历届试题-回文数字 python 摘要:解题思路:遍历,数字->字符串->列表,再与反转后判断注意事项:要注意不能直接用=,会修改原始列表数据!参考代码:num = int(input()) cnt = 0 for i in range…… 题解列表 2021年04月24日 0 点赞 0 评论 130 浏览 评分:0.0
蓝桥杯历届试题-回文数字(C语言) 摘要:解题思路:两个函数:1.求各位数之和;2.判断是否为回文数字。注意事项:可用sprintf()把数字转化为字符串方便操作。参考代码:// [蓝桥杯][历届试题]回文数字#include <stdio.…… 题解列表 2021年04月14日 0 点赞 0 评论 274 浏览 评分:9.9
回文数字(c++代码实现,vector) 摘要:解题思路:注意事项:此题比较容易超时, 需要减少遍历次数参考代码:#include using namespace std; vector bool check(int n, int num) …… 题解列表 2021年04月14日 0 点赞 0 评论 207 浏览 评分:0.0
题目 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[7]; int n,n1; int main(){ …… 题解列表 2021年04月11日 0 点赞 0 评论 193 浏览 评分:9.9
蓝桥杯历届试题-回文数字 (C语言代码)非常好理解的一个思路!应该没人看不懂吧...... 摘要:解题思路:将回文数字的各个位都提出来,乘以每个位相应的倍数,如十万位 1(十万位)*100000 然后相加,然后从个位开始反着再来一次,判断两者的和是否相等,就是回文数字,并用计数器num记录,…… 题解列表 2021年04月09日 0 点赞 0 评论 216 浏览 评分:9.9
纯粹的暴力求解 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int fun(int i) { int n1, n2, n3, n4, n5, n6; if (i / 1…… 题解列表 2021年04月04日 0 点赞 0 评论 126 浏览 评分:0.0
利用Python特性降低循环次数 摘要:解题思路: 利用切片反向以及内置的sum,减少位数一半的循环注意事项: 可以只循环一半的位数参考代码:count=0 goal=int(input()) flag=True for …… 题解列表 2021年03月26日 0 点赞 0 评论 386 浏览 评分:8.0