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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class ArrayTest4
{
           public static void main(String[] args)
          {
              System.out.println("Hello laien!") ;
              toHex(60);
          }
             public static void toHex(int num)
           {
                   char[]chs={'1','2','3' , '4' ,'5'
                                   ,'6', '7' ,'8'  , '9' , '10'
                                   , 'A', 'B' , 'C' ,'D','E' ,'F' }  ;
                   //为什么 或者是如何换行在中括号中的内容才能符合Java语法规则??
                   //??????????????????????????????????????
                  
                  
                   for(int x=0 ; x<8 ; x++  )
                   {
                           int temp=num&15;
                           System.out.println(chs[temp]) ;
                           num=num>>>4;
                   }
                  
           }
}

点评

编译不通过?  发表于 2015-5-28 17:57

5 个回复

倒序浏览
直接回车就行了啊
回复 使用道具 举报
表示 不懂
回复 使用道具 举报
wuyusi 来自手机 中级黑马 2015-5-28 20:24:24
板凳
表示没看懂你想表达什么
回复 使用道具 举报
里面定义一个计数变量a,遍历字符数组时a++,当a%5==0,就打印换行System.out.println();
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马