C++指数函数

C++指数函数


阿波罗的战车
浏览 1245回答 2
2回答

婷婷同学_

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

慕田峪4524236

#include <iostream>using namespace std;#include "math.h"void main(){int a,b;cin>>a>>b;cout<<pow(a,b)<<endl;}
打开App,查看更多内容
随时随地看视频慕课网APP