首页 > 代码库 > Java笔试题二:读程序
Java笔试题二:读程序
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笔试题二:读程序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。