math

Using Math Constants

In this example we shall show you how to get constant numbers using the Math Class. Apart from the methods for performing basic numeric operations such as square root, and trigonometric functions, the Math Class also has methods for getting the e, that is the base of the natural logarithms and the PI, that is the ratio of the circumference of a circle to its diameter. To get constant numbers using the Math Class one should perform the following steps:

  • Use Math.E to get the double value that is closer than any other to e, the base of the natural logarithms.
  • Use Math.PI to get the double value that is closer than any other to pi, the ratio of the circumference of a circle to its diameter,

as described in the code snippet below.  

package com.javacodegeeks.snippets.core;

import java.lang.Math;

public class MathConstants {

	public static void main(String args[]) {
		System.out.println("Pi = " + Math.PI);
		System.out.println("E = " + Math.E);
	}
	
}

Output :


Pi = 3.141592653589793
E = 2.718281828459045

  
This was an example of how to get constant numbers using the Math Class in Java.

Byron Kiourtzoglou

Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button