在C語言中,可以使用數學庫中的pow函數來進行冪次方計算。pow函數的原型如下:
double pow(double x, double y);
其中x為底數,y為指數,函數返回x的y次方。例如,計算2的3次方可以使用如下代碼:
#include <stdio.h>
#include <math.h>
int main() {
double base = 2;
double exponent = 3;
double result = pow(base, exponent);
printf("%.2f raised to the power of %.2f is %.2f\n", base, exponent, result);
return 0;
}
運行以上代碼,輸出結果為:
2.00 raised to the power of 3.00 is 8.00