FileDocCategorySizeDatePackage
RealValues.javaAPI DocExample331Sun Feb 08 21:33:58 GMT 2004None

RealValues.java

/**
 * Show real values.
 * @author Ian F. Darwin, http://www.darwinsys.com/
 * @version $Id: RealValues.java,v 1.7 2004/02/09 03:33:57 ian Exp $
 */
public class RealValues {
	public static void main(String[] argv) {
		System.out.println("The real 0.3 is " + 0.3);
		System.out.println("The real 0.3 times 3 is " + 0.3 * 3);
	}
}