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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 湛添友 中级黑马   /  2014-3-23 23:11  /  988 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class Shiliu{
public static void getshiliu(int a)
{
for(;a>0;a=a>>>4)
{
int x=a&15;
if(x>9)
System.out.println((char)(x-10+'A'));
else
System.out.println(x);

}
}
public static void main(String[] args){
int n=165695845;
getshiliu(n);
}
}
有没有什么方法把打印结果倒过来啊???

评分

参与人数 1技术分 +1 收起 理由
何伟超 + 1

查看全部评分

4 个回复

倒序浏览
本帖最后由 my_android_drea 于 2014-3-24 00:48 编辑
  1. public class Shiliu{
  2.         public static void getshiliu(int a)
  3.         {
  4.                 StringBuffer  sb=new StringBuffer();
  5.                
  6.                 for(;a>0;a=a>>>4)
  7.                 {
  8.                         int x=a&15;
  9.                         
  10.                         if(x>9)
  11.                                 sb.append((char)(x-10+'A'));
  12.                         else
  13.                                 sb.append(x);
  14.       
  15.                 }
  16.                 System.out.println(sb.reverse());   //  先装到容器里面,再反向打印
  17.         }
  18.         public static void main(String[] args){
  19.                 int n=165695845;
  20.                 getshiliu(n);
  21.                
  22.         }
  23. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
何伟超 + 1

查看全部评分

回复 使用道具 举报
也可以把与15的结果加到字符串中,再把字符串转换成字符数组,最后把字符数组反向打印:

public class Shiliu{
        public static void getshiliu(int a)
        {
                String  s="";
               
                for(;a>0;a=a>>>4)
                {
                        int x=a&15;
                       
                        if(x>9)
                                s+=(char)(x-10+'A');
                        else
                                s+=x;

                }
                char[] ch=s.toCharArray();
               
                for(int x=ch.length-1;x>=0;x--){
                       
                        System.out.print(ch[x]);
                }
        }
        public static void main(String[] args){
                int n=165695845;
                getshiliu(n);
               
        }
}


回复 使用道具 举报
装容器,反着打印
回复 使用道具 举报
这些方法估计你还没学过,可以考虑用学过的数组来操作也可以啊

数组倒着打印还不简单吗???
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马