poder de Kotlin
// Use Double type
Math.pow(5.0, 2.0) // = 25.0
// Or
Math.pow(5.toDouble(), 2.toDouble()) // = 25.0
Hilarious Hornet
// Use Double type
Math.pow(5.0, 2.0) // = 25.0
// Or
Math.pow(5.toDouble(), 2.toDouble()) // = 25.0
Double.pow(x: Double) => 10.0.pow(14) it means 10^14