题解 1201: 回文数(一)

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

筛选

回文数(一)——python

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

1201: 回文数(一)

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

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

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

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

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