所有代码中唯一没有用while的 摘要:```python def hs(q): p=0 for i in range(10): if p>=9: return(0) …… 题解列表 2024年08月01日 0 点赞 0 评论 89 浏览 评分:0.0
回文数(一)——python 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): a = input() s = 0 while a!=a[::-1]: …… 题解列表 2023年03月31日 0 点赞 0 评论 82 浏览 评分:0.0
回文数(python中函数的递归) 摘要:解题思路:注意事项:参考代码:while True: try: n = int(input()) count = 0 &n 题解列表 2023年01月26日 0 点赞 0 评论 167 浏览 评分:9.9
1201: 回文数(一) 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): m=input() s=0 while s<=8: …… 题解列表 2022年02月13日 0 点赞 0 评论 182 浏览 评分:9.3
回文数(一)-题解(Python代码) 摘要:解题思路:注意事项:参考代码:n=int(input())for i in range(n): m=input() s=0 flag=1 while m!=m[::-1]: …… 题解列表 2022年01月30日 0 点赞 0 评论 164 浏览 评分:8.0
回文数(一)-题解(Python代码) 摘要:```python # 判断是否为回文,如果是回文,则返回0,如果不是回文,则返回其倒序后的数字 def func(n): m = n s = 0 while m >…… 题解列表 2020年03月24日 0 点赞 0 评论 430 浏览 评分:8.0