//任务2 编写控制台程序将以下给定的整数常量用合适的变量接收并将其10进制值与二进制表示形式分别输出打印在控制台界面
//55;666;1080;2500;78451;
public class test02{
public static void main(String[] args){
//byte1的相关内容
byte by = 55;
System.out.println(“十进制的值”+by);
String toby =Integer.toBinaryString(by);
System.out.println(“二进制的值”+toby);
//short的相关内容short sh =666;System.out.println("十进制的值为"+sh);String toshort=Integer.toBinaryString(sh);System.out.println("二进制的值为"+toshort);//short的相关内容short sh1=1080;System.out.println("十进制的值为"+sh1);String toshort1=Integer.toBinaryString(sh1);System.out.println("二进制的值为"+toshort1);//short的相关内容short sh2=2500;System.out.println("十进制的值为"+sh2);String toshort2=Integer.toBinaryString(sh2);System.out.println("二进制的值为"+toshort2);//int的相关内容int num =78451;System.out.println("十进制的值为"+num);String toint=Integer.toBinaryString(num);System.out.println("二进制的值为"+toint);}
}