【简答题】请阅读下面的程序 class WhileDemo4 { public static void main(String[] args) { int n = 5; while (n > 10) { System.out.print(n); n++; } } } 下列选项中,哪一个是程序运行的结果A. 无输出 B. 输出56789 C. 死循环 D. 编译错误
【单选题】请阅读下面的程序 class WhileDemo4 { public static void main(String[] args) { int n = 5; while (n > 10) { System.out.print(n); n++; } } } 下列选项中,哪一个是程序运行的结果