" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
base = numero
Ejemplo:
numero = 2
exponente = 3
resultado = 1;
for (i = 1; i<=exponente; i++) {
resultado = resultado * numero;
}
El bucle dara 3 vueltas, es decir multiplicara 3 veces el número 2
2x2x2 = 8
Saludos...