下列代码执行的结果是() public class Test { public static void main(String[] args) { int score = 60; 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