如何使用Java計算次方(次冪)

public static void main(String args[]) {
    int num = 2;
    int pow = 5;
    System.out.print(power(num , pow));
  }
  public static int power(int a , int b) {
    int power = 1;
    for (int c = 0; c < b; c++)
      power *= a;
    return power;
  }
相關文章
相關標籤/搜索