进制转换(Map)

进制转换

https://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6?tpId=37&tqId=21228&rp=1&ru=/exam/oj/ta&qru=/exam/oj/ta&sourceUrl=%2Fexam%2Foj%2Fta%3FtpId%3D37&difficulty=undefined&judgeStatus=undefined&tags=&title=

刷题日志,凡分享出来的题目皆为本人独立完成。水平一般,能力有限,但还是希望能给看到的有缘人带来一丝启发。
import java.util.*;
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        String ss = s.substring(2);
        int n = ss.length();
        int j = 1;
        int sum = 0;
        Map<Character , Integer> map = new HashMap<>();
        map.put('0' , 0);
        map.put('1' , 1);
        map.put('2' , 2);
        map.put('3' , 3);
        map.put('4' , 4);
        map.put('5' , 5);
        map.put('6' , 6);
        map.put('7' , 7);
        map.put('8' , 8);
        map.put('9' , 9);
        map.put('A' , 10);
        map.put('B' , 11);
        map.put('C' , 12);
        map.put('D' , 13);
        map.put('E' , 14);
        map.put('F' , 15);
        for(int i = n - 1 ; i >= 0 ; i--){
            int h = map.get(ss.charAt(i));
            sum += h * j;
            j *= 16;
        }
        System.out.println(sum);
    }
}


全部评论

相关推荐

不愿透露姓名的神秘牛友
11-29 12:19
点赞 评论 收藏
分享
头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
专心打鱼:互联网搬运工,贴子都要偷
点赞 评论 收藏
分享
评论
14
收藏
分享
牛客网
牛客企业服务