问题标题: 1965   求幂运算 1

2
0
已解决
杨陈卓
杨陈卓
新手天翼
新手天翼
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    long long s;
    int n,m;
    cin>>n>>m;
    s=pow(n,m);
    cout<<s<<endl;
    return 0;
}

 


0
已采纳
张睿杰
张睿杰
初级天翼
初级天翼
if(m==0) cout<<"1"<<endl;
    else if(m==1) cout<<n<<endl;
    else
    {
        s=pow(n,m);
        cout<<s<<endl;
    }

90,参考

3
酷町猫
酷町猫
缔造者之神
缔造者之神

请规范你的提问格式哦

这样其他同学才能更快的回答你的问题

0
我要回答