欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++编写x的n次方

程序员文章站 2022-05-06 20:38:00
...
#include<iostream>
using namespace std;
double power(double x, int n);

int main(int argc, char const *argv[])
{
    double x;
    int n;
    cout << "输入两个数x、n,输出x的n次方" << endl;
    cin>>x;
    cin >> n;
    cout << "x的n次方是:" << power(x, n) << endl;
   
    

    system("pause");
    return 0;
}
double power(double x, int n)
{
    double val = 1.0;
    while(n--)
    {
        val*=x;
    }
    return val;
}

C++编写x的n次方

相关标签: c++小练习