2つの整数のべき乗を計算する方法
ループを使用した方法: この方法では、一つの整数をもう一つの整数の回数分だけ掛け続けることでべき乗を計算します。def power(base, exponent): result = 1 for _ in range(exponent): result *= base return result # 使用例 print(power(2, 3)) # 出力: 8>>More
ループを使用した方法: この方法では、一つの整数をもう一つの整数の回数分だけ掛け続けることでべき乗を計算します。def power(base, exponent): result = 1 for _ in range(exponent): result *= base return result # 使用例 print(power(2, 3)) # 出力: 8>>More
public class Main { public static void main(String[] args) { int base = 2; int exponent = 8; double result = Math.pow(base, exponent); System.out.println(result); } }>>More