【问题】 下列代码执行的结果是() public class Test { public static void main(String[] args) { int score = 50; if (score >= 90) { System.out.println("The Score is good"); } else if (score >= 60) { System.out.println("The S
下列代码执行的结果是() public class Test { public static void main(String[] args) { int score = 50; if (score >= 90) { System.out.println("The Score is good"); } else if (score >= 60) { System.out.println("The Score is OK"); } else { System.out.println("The Socre is low"); } }}A. The Score is good B. 编译错误C. The Score is OK D. The score is low
正确答案:D
题目解析:本题出自国家开放大学,国际开放大学Java语言程序设计,由丰阳塔题库搜集整理。