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

进制之间的转换

时间:2017-06-20 19:12:09      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:oid   java   imp   之间   进制转换   input   import   value   put   

进制转换

代码如下:

package ClassDemo;

import java.util.Scanner;

public class Decimal2Hex {
public static void main (String[] args) {
Scanner input = new Scanner(System.in);

System.out.println("Enter a decimal number: ");
int decimal = input.nextInt();
System.out.print(decimalToHex(decimal));
} private static String decimalToHex(int decimal) {
String hexStr = "";
while (decimal != 0) {
int hexValue = decimal % 16;
hexStr = toHexChar(hexValue) + hexStr;
decimal /= 16;
}
return hexStr;
} private static char toHexChar(int hexValue) {
if (hexValue <= 9 && hexValue >= 0) {
return (char) (hexValue + ‘0‘);
} else {
return (char) (hexValue - 10 + ‘A‘);
}
}
}

 

希望有所帮助

进制之间的转换

标签:oid   java   imp   之间   进制转换   input   import   value   put   

原文地址:http://www.cnblogs.com/F001li/p/7055712.html

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