本帖最後由 葉桔良 於 2023-5-13 16:33 編輯
自定MyMath類別,類別中包含三個方法:pow()、minus() 與 plus()。
利用這些方法,完成指數、減法與加法運算。
譬如當呼叫 MyMath.pow(2,5) 時,能回傳32。
參考執行畫面如下:
- public class Ch55 {
- public static void main(String[] args) {
- System.out.println("2的5次方為"+MyMath.pow(2, 5));
- System.out.println("2減去5等於"+MyMath.minus(2, 5));
- System.out.println("2加上5等於"+MyMath.plus(2, 5));
- }
- }
- class MyMath
- {
- static int pow(int x, int y)
- {
- int res=1;
- for(int i=1; i<=y; i++)
- res*=x;
- return res;
- }
-
- static int minus(int x, int y)
- {
- return x-y;
- }
-
- static int plus(int x, int y)
- {
- return x+y;
- }
- }
複製代碼 |