本帖最後由 tonyh 於 2015-3-14 16:47 編輯
自定MyMath類別, 類別中包含三個方法: pow() , minus() , 與 plus()
利用這個自定類別的方法, 完成指數, 減法, 與加法運算.
譬如當呼叫MyMath.pow(2,5)時, 能回傳32.
參考執行畫面如下:
- public class ch64
- {
- public static void main(String[] args)
- {
- int x=2, y=5;
- System.out.println(x+"的"+y+"次方為"+MyMath.pow(x,y));
- System.out.println(x+"減去"+y+"等於"+MyMath.minus(x,y));
- System.out.println(x+"加上"+y+"等於"+MyMath.plus(x,y));
- }
- }
- 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;
- }
- }
複製代碼 |