题解 | #数字颠倒#

数字颠倒

https://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int i = scanner.nextInt();

        String s = String.valueOf(i);
        String[] split = s.split("");//拆分输入整数字符串

        HashMap<Integer, String> hash = new HashMap<>();
        for (int j = split.length-1; j >=0; j--) {
            String s1 = split[j];//将数组依据下标从后向前放入map
            hash.put(j,s1);
        }
        StringBuilder sb = new StringBuilder();
        for (int j = split.length-1; j >=0; j--) {
            String s1 = hash.get(j);//从map中从后向前取出value后进行stringbuider拼接字符串
            sb=sb.append(s1);
        }
        System.out.print(sb);
    }
}

全部评论

相关推荐

Java抽象带篮子:难蚌,点进图片上面就是我的大头😆
点赞 评论 收藏
分享
10-13 17:47
门头沟学院 Java
wulala.god:图一那个善我面过,老板网上找的题库面的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务