1、除零異常
dividebyzeroexception
using system;
using system.collections.generic;
public class myclass
catch (dividebyzeroexception e)
finally
console.readkey();
}}
2、陣列越界
indexoutofrangeexception
using system;
namespace arrayexception
;
tryconsole.writeline("the sum of the array is : ",sum);
}catch(indexoutofrangeexception e)
}
} class test }
}
3、溢位異常
overflowexception
using system;
class stack
catch (stackoverflowexception e)
}public static void over2()
catch (stackoverflowexception e)
}public static int over(int p)
public static void main(string args)
}
4、格式不正確
formatexception
using system;
using system.collections.generic;
public class exceptiontest catch (formatexception e)
}}
5、finally練習
6、throw練習
using system;
using system.collections.generic;
using system.text;
public static void main()
catch (exception e)
finally
console.readline();
}}
7、自定義異常
using system;
}class program
else
}catch (emailexception ex)
console.readline();
}}
學習軟體設計 C 練習(3)
引用請註明 3.1求指定範圍內的所有合數 實驗題目 合數就是非素數,即除了1 和它本身之外還有其他約數的正整數。編寫乙個程式求出指定資料範圍 假設 10 100 內的所有合數。實驗目的 1 掌握迴圈語句for 的使用。2 掌握選擇語句if 的使用。3 學會巢狀使用迴圈語句和選擇語句。4 學會使用br...
學習軟體設計 C 練習(6)
引用請註明 1 運算子過載實驗。編寫乙個類,過載 符號,使它能夠實現關於原點對稱座標的計算 2 編寫乙個類,類中兩個求最大值方法,引數分別為陣列和整數 3 編寫乙個類,實現兩個數字的交換 4 輸出引數的使用 using system namespace operator public static ...
學習軟體設計 C 練習(2)
引用請註明 2 用while迴圈完成 編乙個程式,輸入0 100之間的乙個學生成績分數,用switch語句輸出成績等第 成績優秀 90 100 成績良好 80 89 成績中等 60 79 和成績不及格 59以下 3 猜數字遊戲,編寫乙個類,預先定義乙個常量,從控制台輸入數字,將輸入的數字與常量比較,...