题解 | #进制转换#

进制转换

https://www.nowcoder.com/practice/8f3df50d2b9043208c5eed283d1d4da6

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {

        Scanner fzhinput = new Scanner(System.in);
        
        String sz16 = fzhinput.nextLine();

        StringBuilder stacksz16 = new StringBuilder(); 

        for(int i=2;i<sz16.length();i++){
            stacksz16.append(sz16.charAt(i));
        }
        int sz10 = Integer.parseInt(stacksz16.toString(),16);
        System.out.println(sz10);

    }
}

全部评论

相关推荐

offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务