码迷,mamicode.com
首页 > 其他好文 > 详细

数字反转

时间:2020-01-09 20:36:49      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:return   style   value   solution   int   整数   result   有符号   范围   

给出一个32位有符号的整数,需要将这个整数的数字进行反转输出,若数字超出32位存储范围则输出0;

 1 class Solution {
 2     public int reverse(int x) {
 3         long result=0;
 4         while(x!=0){
 5             result=result*10+x%10;
 6             x=x/10;
 7         }
 8         return (result>Integer.MAX_VALUE||result<Integer.MIN_VALUE)?0:(int)result;
 9     }
10 }

反思:

1:对Integer.MAX_VALUE和Integer.MIN_VALUE这种表达不熟悉。

2:没有想到定义long类型变量;

数字反转

标签:return   style   value   solution   int   整数   result   有符号   范围   

原文地址:https://www.cnblogs.com/xiaoyaomianbiren/p/12173131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!