📜  C程序来计算数字的幂(1)

📅  最后修改于: 2023-12-03 15:14:26.383000             🧑  作者: Mango

C程序计算数字的幂

在C语言中,我们可以使用 pow() 函数来计算数字的幂。在本篇文章中,我们将介绍如何在C程序中使用 pow() 函数来计算数字的幂。

pow() 函数

pow() 函数是C语言中的一个内置函数,用于计算数字的幂。该函数的原型如下:

double pow(double x, double y);

其中,x 是底数,y 是指数。

示例代码

下面的示例代码演示了如何使用 pow() 函数来计算数字的幂。代码中,我们输入一个数字和一个指数,然后使用 pow() 函数计算它们的幂,最后输出结果。

#include <stdio.h>
#include <math.h>

int main()
{
    double base, exponent, result;

    printf("Enter the base number: ");
    scanf("%lf", &base);

    printf("Enter the exponent: ");
    scanf("%lf", &exponent);

    result = pow(base, exponent);

    printf("%.2lf ^ %.2lf = %.2lf", base, exponent, result);
    return 0;
}

输出结果:

Enter the base number: 2
Enter the exponent: 3
2.00 ^ 3.00 = 8.00
总结

本篇文章介绍了如何在C程序中使用 pow() 函数来计算数字的幂。通过了解 pow() 函数的用法,我们可以在编写C程序时更加方便地进行数字运算。