2-13 编程练习

2-13 编程练习

public class HelloWorld {
	public static void main(String[] args) {
    	// 定义int类型变量,值为100
		int score = 100; 
		// 创建Integer包装类对象,表示变量score1的值
		Integer score1 = new Integer(100);        
		// 将Integer包装类转换为double类型
		double scoreD = score1.doubleValue();        
		// 将Integer包装类转换为long类型
		long scoreL = score1.longValue();      
		// 将Integer包装类转换为int类型
		int i = score1.intValue();
		//打印输出
		System.out.println("score对应的Integer类型结果为:"+score1);
		System.out.println("score对应的double类型结果为:"+scoreD);
		System.out.println("score对应的long类型结果为:"+scoreL);
		System.out.println("重新由Integer转为int类型的结果为:"+i);
		
	}
}


正在回答

登陆购买课程后可参与讨论,去登陆

1回答

同学你好,已完成练习,棒棒哒!继续加油!祝学习愉快!

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师