FileDocCategorySizeDatePackage
Logarithm.javaAPI DocExample369Sun Feb 08 21:33:58 GMT 2004None

Logarithm.java

/**
 * Show the logarithm to base e of a number
 * @author Ian F. Darwin, http://www.darwinsys.com/
 * @version $Id: Logarithm.java,v 1.3 2004/02/09 03:33:57 ian Exp $
 */
public class Logarithm {
	public static void main(String[] argv) {
		//+
		double someValue;
		// compute someValue...
		//-
		someValue = 0;
		//+
		double log_e = Math.log(someValue);
		//-
	}
}