返回列表 發帖

物件導向基礎概念 (四)

  1. public class ch34    //類別
  2. {
  3.     public static void main(String args[])   //主方法
  4.     {
  5.          int x=2, y=5;
  6.          System.out.println(x+"的"+y+"次方為"+MyMath.pow(x,y));
  7.          System.out.println(x+"減去"+y+"等於"+MyMath.minus(x,y));
  8.          System.out.println(x+"加上"+y+"等於"+MyMath.plus(x,y));
  9.     }
  10. }

  11. class MyMath
  12. {
  13.     public static float pow(int a, int b)
  14.     {
  15.         int result=1;
  16.         for(int i=1; i<=b; i++)
  17.              result=result*a;
  18.         return result;
  19.     }
  20.    
  21.     public static int minus(int a, int b)
  22.     {
  23.         return a-b;
  24.     }

  25.     public static int plus(int a, int b)
  26.     {
  27.         return a+b;
  28.     }
  29. }
複製代碼

返回列表