欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

数字颠倒

程序员文章站 2022-07-13 15:17:11
...

https://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe?tpId=37&tqId=21234&tPage=1&rp=&ru=%2Fta%2Fhuawei&qru=%2Fta%2Fhuawei%2Fquestion-ranking

 

一、题目描述

输入一个整数,将这个整数以字符串的形式逆序输出

程序不考虑负数的情况,若数字含有0,则逆序形式也含有0,如输入为100,则输出为001

 

二、代码实现

import java.util.Scanner;
public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()) {
            int input = sc.nextInt();
            //对于最高位为0的情况,即input == 0, 不可能有0123
            if (input == 0) {
                System.out.println(0);
                continue;
            }
            //对于最高位不为0的情况
            while (input != 0) {
                System.out.print(input % 10);
                input = input / 10;
            }
        }
        sc.close();
    }
    
}