华为研发工程师编程题——进制转换

此生再无相见时 提交于 2020-02-08 06:25:16

一、题目

写出一个程序,接受一个十六进制的数,输出该数值的十进制表示。(多组同时输入 )

输入描述:

输入一个十六进制的数值字符串。

输出描述:

输出该数值的十进制字符串。

输入例子1:

0xA

输出例子1:

10

二、代码实现

import java.util.Scanner;

public class BinaryTransform {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()) {
            transform(sc.next());
        }
    }

    private static void transform(String input) {
        String str = input.substring(2, input.length());
        int res = 0;
        for (int i = 0; i < str.length(); i++) {
            if (str.charAt(i) >= 'A' && str.charAt(i) <= 'F') {
                res += res * 15 + str.charAt(i) - 'A' + 10;
            } else if (str.charAt(i) >= 'a' && str.charAt(i) <= 'f') {
                res += res * 15 + str.charAt(i) - 'a' + 10;
            } else {
                res += res * 15 + str.charAt(i) - '0';
            }
        }
        System.out.println(res);
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!