Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 18:26
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/c41c0cee8d3f01d05bc7ee3cb5b2949e to your computer and use it in GitHub Desktop.
Save parzibyte/c41c0cee8d3f01d05bc7ee3cb5b2949e to your computer and use it in GitHub Desktop.
class Main {
public static void main(String[] args) {
double numero = 11;
double cuadrado = Math.pow(numero, 2);
System.out.println("11 elevado al cuadrado es " + cuadrado);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment