本帖最后由 李健09 于 2013-7-20 23:46 编辑
class array16
{
public static void toHex(int num)//十进制准换16进制
{
//StringBuffer sb=new StringBuffer();
for (int x=0;x>8 ;x++ )
{
int temp=num&15;
if(temp>9)
System.out.println((char)(temp-10+'A'));
//sb.append((char)(temp-10+'A'));
else
System.out.println(temp);
//sb.append(temp);
num=num>>>4;
}
//System.out.println(sb.reverse());
}
public static void main(String[] args)
{
toHex(60);
}
} |