题解 2819: 数字反转

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

筛选

2819: 数字反转

摘要:解题思路:注意事项:参考代码:n = int(input())if n >= 0:    s = str(n)[::-1]    print(int(s))else:    n = -n    s =……

2819: 数字反转

摘要:参考代码:n = input() if n[0] == '-':     print('-' + str(int(n[1:][::-1]))) else:   ……

编写题解 2819: 数字反转

摘要:解题思路:注意事项:参考代码:n=input()fn=str(abs(int(n)))#取整+绝对值+字符串,避免‘-’的影响r=0#反转新数for j in range(len(fn)-1,-1,-……

比较详细的嘞

摘要:解题思路:用整数类型来解,可以有效规避删0问题,注意添加负号问题不大的,字符串来搞也可以,就是注意删0问题注意事项:9000000,0,12,-203,-32,-200测试数据看看参考代码:N=inp……

2819: 数字反转

摘要:解题思路:注意事项:参考代码:a = input() a = a[::-1]  # 字符串逆序 if a[len(a)-1] == '-':  # 如果输入负数     a = ……

2819: 数字反转(python)

摘要:解题思路:注意事项:参考代码:n = int(input()) if n < 0:     print("-",end = "")     n = -n n = str(n)[::-1] ……