题解 1201: 回文数(一)

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

筛选

回文数(一)-题解(Python代码)

摘要:```python # 判断是否为回文,如果是回文,则返回0,如果不是回文,则返回其倒序后的数字 def func(n): m = n s = 0 while m >……

回文数(一)-题解(C语言代码)

摘要:```c #include long long daozhi(long long s); //1、将所有进制转换为10进制 //2、写一个将数倒置的函数 //3、一直加进行比较,如果步数大于……

1201: 回文数(一) 递归

摘要:```javascript #include//这个思路和回文(二)差不多 using namespace std; const int N=1e3; char m[N]={0}; int ……

题解 1201: 回文数(一)

摘要:参考代码:#include <stdio.h>#include <stdlib.h>int huiwen(int n)//回文判断{    int count=0;    int m=n;    wh……

编写题解 1201: 回文数(一)

摘要:解题思路:数字转换为字符串 倒置和判断回文两个函数 注意事项:参考代码:#include "stdio.h"#include "string.h"#include "stdlib.h"void NIZ……

回文数(一)

摘要:解题思路:注意事项:import java.util.Scanner;public class Demo1201 { public static void main(String[] args) { ……

回文数(一)-题解(Python代码)

摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n):    m=input()    s=0    flag=1    while m!=m[::-1]:  ……

1201: 回文数(一)

摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n):     m=input()     s=0     while s<=8:         ……