以下程序段的输出结果为 .
来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/16 19:15:46
以下程序段的输出结果为 .
以下程序段的输出结果为 .
\x05public class TryCatchFinally{
\x05static void Proc( int sel ){
\x05\x05try{
\x05\x05 if( sel==0 ){System.out.print("no Exception ");
\x05\x05\x05\x05return;}
\x05\x05 else if( sel==1 ){ int j = 4/0; }
\x05\x05\x05}
\x05\x05catch( ArithmeticException e ) {
\x05\x05\x05System.out.print("catch "); }
\x05\x05catch( Exception e ) {
\x05\x05\x05System.out.print("will not be executed ");}
\x05\x05finally{
\x05\x05\x05System.out.print("finally "); \x05}
\x05}
public static void main( String args[] ){
\x05 Proc( 1 ); \x05}
\x05}
以下程序段的输出结果为 .
\x05public class TryCatchFinally{
\x05static void Proc( int sel ){
\x05\x05try{
\x05\x05 if( sel==0 ){System.out.print("no Exception ");
\x05\x05\x05\x05return;}
\x05\x05 else if( sel==1 ){ int j = 4/0; }
\x05\x05\x05}
\x05\x05catch( ArithmeticException e ) {
\x05\x05\x05System.out.print("catch "); }
\x05\x05catch( Exception e ) {
\x05\x05\x05System.out.print("will not be executed ");}
\x05\x05finally{
\x05\x05\x05System.out.print("finally "); \x05}
\x05}
public static void main( String args[] ){
\x05 Proc( 1 ); \x05}
\x05}
打印结果为: catch finally .第二个 catch 不输出
这段代码考查的是try catch finally 的执行顺序.怎么捕获异常的.
与 switch 相关,遇到第一个满足条件则执行.然后跳到finally.
类似于switch 中的case break; default..
这段代码考查的是try catch finally 的执行顺序.怎么捕获异常的.
与 switch 相关,遇到第一个满足条件则执行.然后跳到finally.
类似于switch 中的case break; default..
以下程序的输出结果____.
下列程序的输出结果为:
以下程序段的输出结果是int x=3;
阅读以下程序,当输入数据的形式为:2,1,10,正确的输出结果为_________
阅读以下程序,当输入数据的形式为:1,2,3 ,其输出结果为_______.(表示回车)
若a、b、c均为int型变量,则执行以下程序段后的输出结果为( ). b=(a=10,a+5,c=10)
执行以下程序段后,输出结果和a的值是().int a=10; printf("%d",a++); A、11 和 10 B
编写一c++累结构程序 计算以下数据的平均值 并用函数段输出结果 10.20.4.6.11.21.55.88.8.3.6
列程序运行后的输出结果为?
若运行以下程序时,从键盘输入25,13,10 ,则输出结果为( )
int a=11,b=2;,执行下述程序段后,输出结果为__________.
一道C语言题目,求解答以下程序的输出结果