Java笔试题二:读程序

Posted Joshua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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笔试题二:读程序的主要内容,如果未能解决你的问题,请参考以下文章

SQL:我为什么慢你心里没数吗,Java笔试题大全带答案百度云

哪里有java笔试题

java基础笔试题

字节笔试题(含答案)

程序员笔试题收集汇总

笔试题Java笔试题知识点