码迷,mamicode.com
首页 > 编程语言 > 详细

Java笔试题二:读程序

时间:2016-11-02 00:51:29      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:result   笔试题   main   int   color   返回结果   div   bsp   system   

1 public class SopResult {
2 
3     public static void main(String[] args) {
4         
5         int i = 4;
6         System.out.println("The result is: " + ((i > 4) ? 9.99 : 9));
7     }
8 
9 }

读程序,输出结果:The result is: 9.0

 

分析可知,本程序相当于:

 1 public class SopResult {
 2 
 3     public static void main(String[] args) {
 4         
 5         int i = 4;
 6         double result = (i > 4) ? 9.99 : 9;
 7         System.out.println("The result is: " + result);
 8     }
 9 
10 }

由于9.99为double类型,因此返回结果类型应为double类型

相当于double result = 9;

所以输出结果为The result is: 9.0

Java笔试题二:读程序

标签:result   笔试题   main   int   color   返回结果   div   bsp   system   

原文地址:http://www.cnblogs.com/joshua-aw/p/6021130.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!