算法-三位数反转

反转一个只有3位数的整数。
样例 1:
输入: number = 123
输出: 321
样例 2:

输入: number = 900
输出: 9
注意事项
你可以假设输入一定是一个只有三位数的整数,这个整数大于等于100,小于1000。
思路:

分别获取个十百数字,颠倒一下即可.

代码实现:

public class Solution {
    /**
     * @param number: A 3-digit number.
     * @return: Reversed number.
     */
    public int reverseInteger(int number) {
        // write your code here
        int a = number/100;
        int b = number/10;
           b -= a * 10;
        int c = number % 10;
        
        return a+(b*10)+(c*100);
    }
}

上面代码不够完善,比如只输入 个位或者十位数,又或者越界问题

class Solution {
    public int reverse(int x) {
        long result = 0;
        while (x != 0){
            result = result * 10 + x % 10;
            x = x / 10;
        }
        if (result > Integer.MAX_VALUE || result < Integer.MIN_VALUE){
            return 0;
        }
        return (int)result;
    }
    
}
//代码来源  https://blog.csdn.net/qq_38640439/article/details/81913001

推荐2个刷题的地方:
LintCode
国内的力扣

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值