[求助]C++中有没有求幂的函数或运算符
想问一下,在C++中有没有求幂的函数或是运算符?
#include <iostream.h>
#include <stdlib.h>
int power(int i,int j)
{
if((i+j)%2!=0)
{
cout<<j<<"没有整数幂!能使其为"<<i<<endl;
exit(1);
}
int count=1;
int re=i/j;
while(re!=1)
{
count++;
if(re<1)
{
cout<<j<<"没有整数幂!能使其为"<<i<<endl;
exit(1);
}
re=re/j;
}
return count;
}
void main()
{
int i,j;
cin>>i;
cin>>j;
cout<<j<<"的"<<power(i,j)<<"幂为"<<i<<endl;
}