【C++常用函数】x的幂次方pow()
pow()函数原型:double pow(double a,double b);功能: 计算a的b次方#include <iostream>#include <math.h>//pow#include <typeinfo>//typeidusing namespace std;void main(){ int a,b; cin >> a >> b