Exponents In Java Example
Chapter:
Math Class
Last Updated:
05-05-2016 18:48:39 UTC
Program:
/* ............... START ............... */
public class JavaExponentsExample {
public static void main(String[] args) {
System.out.println(Math.pow(3,4));
}
}
/* ............... END ............... */
Output
Tags
Exponents, Java, Math