为了账号安全,请及时绑定邮箱和手机立即绑定

C++指数函数

C++指数函数

C++
阿波罗的战车 2019-03-03 18:04:55
C++指数函数
查看完整描述

2 回答

?
婷婷同学_

TA贡献1844条经验 获得超8个赞

math库中有pow(x,y)函数,x为底数,y为指数,返回值为结果,如下:
#include <stdlib.h>
#include <math.h>
#include<iostream>
using namespace std;
int main() {

int x, y, result;

cout<<"Enter x,y \n"<<endl;
cin>>x>>y;
result=pow(x,y);
cout<<"\nthe result is:"<<result<<endl;
system("pause");
return 0;
}



查看完整回答
反对 回复 2019-03-10
?
慕田峪4524236

TA贡献1875条经验 获得超5个赞

#include <iostream>
using namespace std;
#include "math.h"
void main()
{
int a,b;
cin>>a>>b;
cout<<pow(a,b)<<endl;
}




查看完整回答
反对 回复 2019-03-10
  • 2 回答
  • 0 关注
  • 1244 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信