利用# include < math . h >和 pow ()函数,编写代码,实现计算 x 的 y 次方,其中 x 和 y 均为整数。
时间: 2023-05-11 15:06:33 浏览: 141
Python中pow()和math.pow()函数用法示例
好的,以下是实现计算 x 的 y 次方的代码:
#include <math.h>
#include <stdio.h>
int main() {
int x = 2, y = 3;
double result = pow(x, y);
printf("%d 的 %d 次方是 %lf", x, y, result);
return 0;
}
输出结果为:2 的 3 次方是 8.000000
希望能够帮到您!
阅读全文