【面试题】反转整数

polaris · · 4402 次点击
1.正负 2.绝对值 3.转字符串 4.反转字符串 5.是否需要加-
#9
更多评论
```go func Reverse(x int32) int32 { var xx, rx, tnum, pos, negative int32 //备份原值 xx = x var posNum, posStart, maxLan int //int32最大长度 maxLan = 11 //判断是否负数 negative = 1 if x < 0 { negative = -1 xx = xx * -1 } for i := maxLan; i >= 0; i-- { tnum = int32(math.Pow10(i)) if xx >= tnum { pos = xx / tnum if pos > 0 || posStart > 0 { if posStart == 0 { posStart = 1 } fmt.Println(i, pos) posNum++ rx += pos * (int32(math.Pow10(posNum - 1))) } xx = xx - pos*tnum } } rx = rx * negative return rx } ```
#1
polaris
社区,需要你我一同完善!
你这写的有点复杂了,而且还有 bug:`Reverse(10010)` 结果是 11,明显不对!
#2