問答題

對于下列代碼段,執(zhí)行后輸出結(jié)果是()。
int n,m;
int[] a=new int[5];
n=10;
m=10;
try{
for(inti=0;i<=a.Length;i++);
a[i]=i;
n=1/(n-m);
}
catch(DivideByZeroExceptione1){
Console.WriteLine(“產(chǎn)生零除異常!”);
}
catch(IndexOutOfRangeExceptione2)
{
Console.WriteLine(“產(chǎn)生數(shù)組訪問越界異常!”);
}


您可能感興趣的試卷