c3-34 case16 改进十进制转十六进制(上)

public class Case16 {
    public static void main(String [] args){
        int number = 245;
        int shang = number/16;//15
        int yu = number%16;//5
        char result;
        String tex = "";
        if(yu<9){
            result = (char)('0'+(yu));
        }else{
           result =(char)('A'+(yu-10));
        }
        tex = result + tex;

        yu = shang%16;
        shang = shang/16;
        if(yu<9){
            result = (char)('0'+(yu-0));

        }else{
            result =(char) ('A'+(yu-10));
        }
        tex = result +tex;
        System.out.println("245的十六进制是:"+tex);
    }
}

上一篇:Python代码阅读(第34篇):列表元素出现频率字典


下一篇:34. 在排序数组中查找元素的第一个和最后一个位置