(9-5)请阅读程序,然后写出程序运行结果。(注意输出不换行) public class Demo8 { static void show() { throw new RuntimeException(); } public static void main(String[] args ) { try { show (); } catch (RuntimeException e ) { System. out .print( "1" ); } catch (Exception e ) { System. out .print( "2" ); } finally { System. out .print( "3" ); } System. out .println( "4" ); } }