码迷,mamicode.com
首页 > 其他好文 > 详细

【华为笔试】十六进制转换

时间:2017-09-02 22:36:46      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:[]   har   toc   代码实现   next   line   can   pow   substring   

java API有现成的函数,可以使用,下面用代码实现。

【AC代码】

 1 import java.util.Scanner;
 2 
 3 public class Main {
 4     public static void main(String[] args) {
 5         Scanner sc = new Scanner(System.in);
 6         while (sc.hasNext()) {
 7             String str = sc.nextLine();
 8             String str1 = str.substring(2);
 9             char[] ch = str1.toCharArray();
10             int n = ch.length;
11             int res = 0;
12             String ans;
13             for (int i = 0; i < ch.length; i++) {
14                 if (ch[i] >= ‘A‘ && ch[i] <= ‘F‘) {
15                     res += ((ch[i] - 55) * Math.pow(16, n - 1));
16                     n -= 1;
17                 }
18                 if (ch[i] >= ‘0‘ && ch[i] <= ‘9‘) {
19                     res += ((ch[i] - 48) * Math.pow(16, n - 1));
20                     n -= 1;
21                 }
22             }
23             ans = String.valueOf(res);
24             System.out.println(ans);
25         }
26     }
27 }

 

【华为笔试】十六进制转换

标签:[]   har   toc   代码实现   next   line   can   pow   substring   

原文地址:http://www.cnblogs.com/StoneLuo/p/7467961.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!