Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/04537fa25e581657b79bda3c31d20c8e to your computer and use it in GitHub Desktop.
Save parzibyte/04537fa25e581657b79bda3c31d20c8e to your computer and use it in GitHub Desktop.
class Main {
public static void main(String[] args) {
double numero = 2;
double elevado = Math.pow(numero, 32);
System.out.println("El 2 elevado a la potencia 32 es " + elevado);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment