/**
* Show the logarithm to base e of a number
* @author Ian F. Darwin, ian@darwinsys.com
* @version $Id: Logarithm.java,v 1.2 2000/11/25 17:56:03 ian Exp $
*/
public class Logarithm {
public static void main(String[] argv) {
//+
double someValue;
// compute someValue...
//-
someValue = 0;
//+
double log_e = Math.log(someValue);
//-
}
}
|