填空题 import acm.program.ConsoleProgram; public class Test extends ConsoleProgram { public static int K= 10; public void run() { switch (K) { default: println("没有值"); case 1: println("一"); case 10: println("十"); case 5: println("五"); } } } 当你试图编译和运行以上程序,将会发生什么? 编译时错误. 在"十" 之后输出 "五" 正确. 输出"十". 通过编译,但因为default语句位置上的错误会出现运行时错误. an incorrect answer. the correct answer. an incorrect answer.