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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 神秘人F 中级黑马   /  2014-9-23 10:28  /  1087 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

如果给出一个十进制数字,我想取它的二进制数的后8位。我该怎么做(这个程序怎么写比较简单)

3 个回复

倒序浏览
  1. int x = 3;
  2. return x & 0xff;
复制代码
回复 使用道具 举报
  1. class  Demo
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 Demo_method t = new Demo_method();
  6.                 System.out.println(t.show(3280));//结果为 11010000
  7.         }
  8. }
  9. class Demo_method
  10. {
  11.         String show(int a)
  12.         {
  13.           return Integer.toBinaryString(a & 0xff);//通过和oxff与运算得到后8位。Interger.toBinaryString()转换成2进制、
  14.         }
  15. }
复制代码
回复 使用道具 举报
  1. class test
  2. {
  3.         static void method(int num)
  4.         {
  5.                 int temp=num;
  6.                 byte []b=new byte[8];
  7.                 for (int i=0;i<8 ;i++ )
  8.                 {
  9.                         b[7-i]=(byte)(temp%2);
  10.                         temp=temp/2;
  11.                 }
  12.                 for (int i=0;i<8 ;i++ )
  13.                 {
  14.                         System.out.print(b[i]);
  15.                 }
  16.         }
  17. }






  18. class Demo
  19. {
  20.         public static void main(String[] args)
  21.         {
  22.                 test.method(8);
  23.                
  24.         }
  25. }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马