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

C++指数函数

C++指数函数

C++
杨魅力 2018-12-01 03:03:40
C++指数函数
查看完整描述

1 回答

?
慕雪6442864

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

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;
}

查看完整回答
反对 回复 2018-12-20
  • 1 回答
  • 0 关注
  • 584 浏览

添加回答

举报

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