2819: 数字反转 摘要:解题思路:注意事项:参考代码:n = int(input())if n >= 0: s = str(n)[::-1] print(int(s))else: n = -n s =…… 题解列表 2024年07月30日 0 点赞 0 评论 70 浏览 评分:0.0
2819: 数字反转 摘要:参考代码:n = input() if n[0] == '-': print('-' + str(int(n[1:][::-1]))) else: …… 题解列表 2024年03月17日 0 点赞 0 评论 90 浏览 评分:0.0
编写题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:n=input()fn=str(abs(int(n)))#取整+绝对值+字符串,避免‘-’的影响r=0#反转新数for j in range(len(fn)-1,-1,-…… 题解列表 2024年03月02日 0 点赞 0 评论 82 浏览 评分:0.0
比较详细的嘞 摘要:解题思路:用整数类型来解,可以有效规避删0问题,注意添加负号问题不大的,字符串来搞也可以,就是注意删0问题注意事项:9000000,0,12,-203,-32,-200测试数据看看参考代码:N=inp…… 题解列表 2023年03月24日 0 点赞 0 评论 143 浏览 评分:9.9
2819: 数字反转 摘要:解题思路:注意事项:参考代码:a = input() a = a[::-1] # 字符串逆序 if a[len(a)-1] == '-': # 如果输入负数 a = …… 题解列表 2023年02月23日 0 点赞 0 评论 324 浏览 评分:9.9
2819: 数字反转(python) 摘要:解题思路:注意事项:参考代码:n = int(input()) if n < 0: print("-",end = "") n = -n n = str(n)[::-1] …… 题解列表 2023年02月21日 0 点赞 0 评论 128 浏览 评分:0.0