08 } 09 //Max自定方法求兩數的最大值 10 private int Max(int n1, int n2) 11 { 12 return (n1 > n2 ? n1 : n2); //傳回兩數的最大值 13 } 14 15 private void ...
確定! 回上一頁