5的n次方怎么表示?
答案:3 悬赏:50 手机版
解决时间 2021-05-03 16:30
- 提问者网友:精神病院里
- 2021-05-03 02:48
C++中,怎样表示一个数的N次方?
最佳答案
- 五星知识达人网友:猎心人
- 2021-05-03 03:17
#include<iostream>
#include<cmath>
using namespace std;
int main()
{int n;
cin>>n;
cout<<pow(5,n)<<endl;
return 0;
}
全部回答
- 1楼网友:你可爱的野爹
- 2021-05-03 05:14
#include <math.h>
double pow ( double x , double y );
float powf ( float x , float y ); (C99)
long double powl ( long double x , long double y ); (C99)
用这些函数,不过这是C的,C++直接用pow就行了,因为有重载
具体使用例子
cout << pow(5, 3); // 5的3次方
- 2楼网友:渊鱼
- 2021-05-03 03:55
#include <match.h> //math.h
main()
{
int x=5,y=n;
pow(x,y);
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯