问题本身的目的就是实现进制转换,不能使用已有API

import java.util.Scanner;
//用API=回家等通知
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while (in.hasNextLine()) {
            String s = in.nextLine();
            String tempS = s.substring(2);
            //转换
            int ans = new Main().change(tempS);

            //十进制输出
            System.out.println(ans);
        }
    }
    public int change(String s){
        int ans=0,x=0;
        for(int i=s.length()-1;i>=0;i--){
            char c = s.charAt(i);
            if(c>='A' && c<='F'){
                ans+=(c-'A'+10)*Math.pow(16,x++);
            }else{
                ans+=(c-'0')*Math.pow(16,x++);
            }
        }
        return ans;
    }
}
全部评论

相关推荐

找不到工作死了算了:没事的,雨英,hr肯主动告知结果已经超越大部分hr了
点赞 评论 收藏
分享
与火:这不接? 留子的钱不挣白不挣
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务