Skip to content

Instantly share code, notes, and snippets.

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