hi ppl,
i' ve done a program that calculates the result of raising a random base to a random exponent.
the problem is that this stays in a loop that never comes out, n i have to abort it.
and, its ok to put exp*=exp??
cuz, i dont know how to put it, it has to increase in one??
for (exp = 1; exp <= exponente; exp*=exp)
{
resultado = base pow exp;
}
cout << " El resultado es: " << resultado;
return 0;
thanks!!
gispe!!