题解 | #进制A+B#

进制A+B

http://www.nowcoder.com/practice/6187581174ac48278ca3bccf8d534897

import java.util.Scanner;

// 使用字符串截取功能获取对应的16进制和8进制
// 去掉前置导向
// 使用Integer.parseInt的时候不可以有前置导向

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        // 16
        String s1 = s.substring(0, s.indexOf(" "));
        s1 = s1.substring(2);
        // 8进制
        String s2 = s.substring(s.indexOf(" ")+1);
        s2 = s2.substring(1);
        // 需要去掉前置导向
        int result = Integer.parseInt(s1, 16) + Integer.parseInt(s2, 8);
        System.out.print(result);
    }
}
全部评论

相关推荐

我是小红是我:学校换成中南
点赞 评论 收藏
分享
头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
点赞 1 评论
分享
牛客网
牛客企业服务