學習軟體設計 C 練習(6)

2021-06-01 10:04:50 字數 1269 閱讀 3785

引用請註明

1、運算子過載實驗。編寫乙個類,過載~符號,使它能夠實現關於原點對稱座標的計算

2、編寫乙個類,類中兩個求最大值方法,引數分別為陣列和整數

3、編寫乙個類,實現兩個數字的交換

4、輸出引數的使用

using system;

namespace operator

public static mars operator~(mars x)

class test

,,",s2.a,s2.b,s2.c);

console.readline();

}} }

}

using system;

using system.collections.generic;

class getmax

public void findmax(int array)

}console.writeline(max);

} public static void main()

; getmax a=new getmax();

a.findmax(array);

console.readline();

}}

using system;

using system.collections.generic;

class mars

\tb=\t",a,b);

swap(ref a,ref b);

console.writeline("mars交換後\ta=\tb=\t",a,b);

console.read();

}//交換a,b兩個變數的值

private static void swap(ref int a, ref int b)

\tb=\t",a,b);}}

using system;

using system.collections.generic;

public class myclass

dir = path.substring(0,i);

name = path.substring(i);

} public static void main()

}

學習軟體設計 C 練習(6)

引用請註明 1 運算子過載實驗。編寫乙個類,過載 符號,使它能夠實現關於原點對稱座標的計算 2 編寫乙個類,類中兩個求最大值方法,引數分別為陣列和整數 3 編寫乙個類,實現兩個數字的交換 4 輸出引數的使用 using system namespace operator public static ...

學習軟體設計 C 練習(3)

引用請註明 3.1求指定範圍內的所有合數 實驗題目 合數就是非素數,即除了1 和它本身之外還有其他約數的正整數。編寫乙個程式求出指定資料範圍 假設 10 100 內的所有合數。實驗目的 1 掌握迴圈語句for 的使用。2 掌握選擇語句if 的使用。3 學會巢狀使用迴圈語句和選擇語句。4 學會使用br...

學習軟體設計 C 練習(11)

1 除零異常 dividebyzeroexception using system using system.collections.generic public class myclass catch dividebyzeroexception e finally console.readkey ...