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

将十进制数转换为十六进制数

时间:2017-01-03 21:55:06      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:class   exti   sys   ann   static   version   enter   public   int   

package welcome;

import java.util.Scanner;

public class Decimal2HexCoversion {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        
        System.out.print("Enter an decimal number: ");
        int decimal = in.nextInt();
        
        // 调用十进制数转十六进制的方法
        System.out.println("The hex number for decimal " + decimal + " is " + decimalToHex(decimal));
    }
    
    public static String decimalToHex(int decimal){
        String hex = "";
        
        while(decimal != 0){
            int hexValue = decimal % 16;
            hex = toHexChar(hexValue) + hex;
            decimal = decimal / 16;
        }
        return hex;
    }
    
    public static char toHexChar(int hexValue){
        if(hexValue <= 9 && hexValue >= 0){
            return (char)(hexValue + ‘0‘);
        }else{
            return (char)(hexValue - 10 + ‘A‘);
        }
    }
    
    
}

 

技术分享

 

将十进制数转换为十六进制数

标签:class   exti   sys   ann   static   version   enter   public   int   

原文地址:http://www.cnblogs.com/datapool/p/6246484.html

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