C で n の n 乗を計算します。
ヘッダー ファイルにある pow() 関数を使用します。 pow(base, exponent)、base はべき乗される数値、exponent は累乗です。たとえば、pow(3, 4) は 3 の 4 乗、つまり 81 を計算します。
C で n の n 乗を計算する方法
C では、pow() を使用できます。この関数は、n の n 乗を計算します。この関数は
<code class="cpp">double pow(double base, double exponent);</code>
ここで:
使用法:
n の n 乗を計算するには、次のコードを使用します:
<code class="cpp">double result = pow(n, n);</code>
例:
次は、3 の 4 乗を計算する方法を示す例です:
<code class="cpp">#include <iostream> #include <cmath> using namespace std; int main() { int n = 3; double result = pow(n, n); cout << "3 的 4 次方为:" << result << endl; return 0; }</code>
出力:
<code>3 的 4 次方为:81</code>
以上がC++でnのn乗を書く方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。