题型:单选题 标签:程序
题目:
13. 有如下代码:
public class TestException
{
public static void main(String[] args)
{
try
{
System.out.println("hello");
System.exit(0);
}
finally
{
System.out.println("world");
}
}
}
以上程序的运行结果为______。
A.hello
B.world
C.helloworld
D.不能编译