A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 shw16888 于 2015-4-8 14:37 编辑
  1. public class ten {
  2. public static void main(String[] args){
  3. toBin(60);        
  4. }

  5. public static void  toBin(int num){
  6.         char [] chs={'0','1'};
  7.         char [] arr=new char[32];
  8.         int pos=arr.length;
  9.         while(num!=0);{
  10.                 int temp=num&1;        
  11.                 arr[--pos]=chs[temp];
  12.                 num=num>>>1;
  13.         
  14.         }
  15.         
  16.         for(int i=pos;i<arr.length;i++)
  17.         {
  18.                 System.out.print(arr[i]);
  19.         }
  20.         
  21. }
  22. }
复制代码

5 个回复

倒序浏览
while(num!=0);{

多了个分号,死循环
回复 使用道具 举报
青青竹竿 发表于 2015-3-31 11:48
while(num!=0);{

多了个分号,死循环

火眼晶晶
回复 使用道具 举报
while(num!=0);循环无效
回复 使用道具 举报
好吧,大神们火焰入矩。。
回复 使用道具 举报
青青竹竿 发表于 2015-3-31 11:48
while(num!=0);{

多了个分号,死循环

:L好吧!谢谢
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马