#べき乗 def POWER(n, b) r = 1; i = 0 while i < b r = r * n; i = i + 1 end return r end
a = POWER(7, 5) #7^5
コメントするには、ログインする必要があります。
コメントはありません。