java8-巩固练习
2024-03-18 09:20:50 阅读次数:29
java,p2p,开发语言
//任务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);
}
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_15460007/6050344,作者:前端导师歌谣,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:C/C++ IAT HOOK MessageBoxW
下一篇:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path解决方案