返回列表 發帖

[作業] static 關鍵字 (二)

本帖最後由 tonyh 於 2015-3-14 16:47 編輯

自定MyMath類別, 類別中包含三個方法: pow() , minus() , 與 plus()
利用這個自定類別的方法, 完成指數, 減法, 與加法運算.
譬如當呼叫MyMath.pow(2,5)時, 能回傳32.

參考執行畫面如下:
  1. public class ch64
  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.     static int pow(int x,int y)
  14.     {
  15.         int res=1;
  16.         for(int i=1; i<=y;i++)
  17.         {
  18.             res*=x;
  19.         }
  20.         return res;
  21.     }
  22.     static int minus(int x,int y)
  23.     {
  24.         return x-y;
  25.     }
  26.     static int plus(int x,int y)
  27.     {
  28.         return x+y;
  29.     }
  30. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表