C 語言中乘方有兩種表示方式:使用 pow() 函數,接收底數和指數並傳回結果;或使用乘方運算子 (**),直接計算底數和指數的冪。
C 語言中乘方的表示
#C 語言中,乘方可以使用以下兩種方式表示:
1. 使用pow() 函數
#pow() 函數接收兩個實數參數:底數和指數,並回傳結果。
<code class="c">#include <math.h> double result = pow(2.0, 3.0); // 计算 2 的 3 次方</code>
2. 使用乘方運算子 (**
)
乘方運算子* *
直接計算兩數的冪。左邊的數是底數,右邊的數是指數。
<code class="c">double result = 2.0 ** 3.0; // 计算 2 的 3 次方</code>
範例:
<code class="c">#include <stdio.h> #include <math.h> int main() { double x = 2.0; double y = 3.0; // 使用 pow() 函数计算 x 的 y 次方 double result1 = pow(x, y); // 使用乘方运算符计算 x 的 y 次方 double result2 = x ** y; printf("x 的 y 次方,使用 pow() 函数:%f\n", result1); printf("x 的 y 次方,使用乘方运算符:%f\n", result2); return 0; }</code>
輸出:
<code>x 的 y 次方,使用 pow() 函数:8.000000 x 的 y 次方,使用乘方运算符:8.000000</code>
以上是C語言乘方怎麼表示的詳細內容。更多資訊請關注PHP中文網其他相關文章!