Topic: 进制转换如何写(二,八,十六)不用算法 |
Print this page |
1.进制转换如何写(二,八,十六)不用算法 | Copy to clipboard |
Posted by: wangchen223 Posted on: 2006-07-08 10:34 进制转换如何写(二,八,十六)不用算法 用它自带的东西。老师给我们留的作业。谢谢各位了。 |
2.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: wangchen223 Posted on: 2006-07-08 15:02 谁告诉我呀 |
3.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: scottlai Posted on: 2006-07-08 16:33 Integer.toBinaryString Integer.toOctalString Integer.toHexString |
4.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: wangchen223 Posted on: 2006-07-09 15:51 如何用??给个实例,谢谢了 |
5.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: why Posted on: 2006-07-09 20:35 這個也要给个实例? 如果閣下不願花一點時間試試怎樣搜尋資訊,敝人勸閣下還是不要再學下去,浪費時間了 http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Integer.html also take a look at valueOf(String s, int radix) |
6.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: wangchen223 Posted on: 2006-07-10 22:36 不是我不试,我弄了半天都不行。 |
7.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: why Posted on: 2006-07-11 01:04 wangchen223 wrote: 請問閣下怎樣試,試了甚麼? |
8.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: Freax Posted on: 2006-07-11 09:07 老WHY 01:04都在啊.精神可嘉啊.. 而且说话还是那么幽默.. |
9.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: develop8 Posted on: 2006-07-11 19:07 我会这个,太简单了,直接调用就可以的,你现在不会,将来你会用的, 这个还是比较简单,你把java语法学的不好吧? |
10.Re:进制转换如何写(二,八,十六)不用算法 [Re: wangchen223] | Copy to clipboard |
Posted by: fighttodeath Posted on: 2006-07-13 19:22 public class Binary { static int c=10; public static void main(String[] arg) { System.out.println(Integer.toBinaryString(c)); System.out.println(Integer.toHexString(c)); System.out.println(Integer.toOctalString(c)); } } |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |