Just another web site full of java samples.
public class Exponents { public static void main(String[] args) { System.out.println(Math.pow(8, 3)); } }
$ java Exponents 512.0