蓝桥杯历届试题-回文数字 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int n;fun(int m){int a,b,c,d,e,f; for(b=1;b<=9;b++) for(c=0;c<=9;c…… 题解列表 2019年01月22日 0 点赞 0 评论 356 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C++代码) 摘要:解题思路:暴力即可注意事项:参考代码:#include <iostream> #include <stdio.h> #include <algorithm> #include <string…… 题解列表 2018年03月29日 0 点赞 0 评论 524 浏览 评分:0.0
题解 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:看注释注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin >>n; if(n>54…… 题解列表 2022年02月23日 0 点赞 0 评论 185 浏览 评分:0.0
蓝桥杯历届试题-回文数字-题解(C++代码) 通过 to_string 进行转换 摘要:通过to_string 将数组转换成字符串 然后通过判断字符串来查看是否是回文数 ```cpp #include #include using namespace std; int m…… 题解列表 2020年06月08日 0 点赞 0 评论 458 浏览 评分:0.0
编写题解 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include "iostream"#include "algorithm"#include "vector"using namespace std;int main(…… 题解列表 2022年03月15日 0 点赞 0 评论 97 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C语言代码) 摘要:#include <stdio.h> #include <stdlib.h> #include <string.h> int isPalindrome(int num); //…… 题解列表 2017年12月28日 0 点赞 0 评论 978 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int l,sum=0,n=0; scanf("%d",&l); int i,j,k; for(i=1;i<=9…… 题解列表 2019年03月06日 0 点赞 1 评论 128 浏览 评分:0.0
回文数字-C语言 此题有多坑 摘要:解题思路:我没有用子函数表示一些数据,直接全部写在主函数里面的,注释都有,自己看把注意事项:参考代码:#include"stdio.h"int main(){ int i,j; int n…… 题解列表 2022年06月27日 0 点赞 0 评论 107 浏览 评分:0.0
1434: 蓝桥杯历届试题-回文数字 摘要:从 10000 直接循环到 999999,先判断各位数字和是不是与所给数相等,不相等直接判断下一个数,如果相等用 equal 函数判断是否是回文数。#include <bits/stdc++.h> …… 题解列表 2021年12月26日 0 点赞 0 评论 135 浏览 评分:0.0
蓝桥杯历届试题-回文数字-题解(C++代码) 摘要: #include #include #include using namespace std; int checkbacknum(int …… 题解列表 2020年02月12日 0 点赞 0 评论 225 浏览 评分:0.0