题解 1434: 蓝桥杯历届试题-回文数字

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

简单易懂(C语言代码)

摘要:#include<stdio.h>int isP(int x){     int temp = 0, p = x;     while (x)     {         temp = temp *……

1434: 蓝桥杯历届试题-回文数字

摘要:从 10000 直接循环到 999999,先判断各位数字和是不是与所给数相等,不相等直接判断下一个数,如果相等用 equal 函数判断是否是回文数。#include <bits/stdc++.h> ……

蓝桥杯历届试题-回文数字

摘要:解题思路:代码思路有点乱注意事项:参考代码:#include<stdio.h>int main(){ int n,sum,a; int i,j,k,count=0; scanf("%d",&n); f……

c代码记录之回文数字

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int fun5(int m){     int i,j,k,t=0;     for(i=1;i<=9;i++)    ……