FileDocCategorySizeDatePackage
Math1.javaAPI DocExample238Sat Nov 25 12:56:02 GMT 2000None

Math1.java

/** Show some things from java.lang.Math */
public class Math1 {
	public static void main(String[] argv) {
	System.out.println("A random number is " + Math.random());
	System.out.println("The square root of 2 is " + Math.sqrt(2.0));
	}
}