Compute the value of 2/3 of 5 : double « Data Type « Java






Compute the value of 2/3 of 5

Compute the value of 2/3 of 5
     
/** Compute the value of 2/3 of 5 */
public class FractMult {
  public static void main(String[] u) {

    double d1 = 0.666 * 5;  // fast but obscure and inaccurate: convert
    System.out.println(d1); // 2/3 to 0.666 in programmer's head

    double d2 = 2/3 * 5;  // wrong answer - 2/3 == 0, 0*5 = 0
    System.out.println(d2);

    double d3 = 2d/3d * 5;  // "normal"
    System.out.println(d3);

    double d4 = (2*5)/3d;  // one step done as integers, almost same answer
    System.out.println(d4);

    int i5 = 2*5/3;      // fast, approximate integer answer
    System.out.println(i5);
  }
}



           
         
    
    
    
    
  








Related examples in the same category

1.Double class creates primitives that wrap themselves around data items of the double data type
2.Min and Max values of data type double
3.Java double: double is 64 bit double precision type and used when fractional precision calculation is required.
4.Use toString method of Double class to convert Double into String.
5.Use Double constructor to convert double primitive type to a Double object.
6.Convert java Double to numeric primitive data types
7.Convert Java String to Double
8.Java Double compare example
9.Create a Double object using one of the below given constructors
10.Java Double isInfinite
11.Java Double isNaN method
12.Compare Two Java double Arrays
13.Convert from double to String
14.Convert from String to double
15.Converting a String to a double type Number
16.Ternary operator on double value
17.Binary search
18.Linear Searching double Arrays
19.The Circle Area Calculator
20.A Program That Uses the Mathematical Methods of the Math Class
21.A Program That Uses the Rounding Methods of the Math Class
22. Get Double Number
23.Show INFINITY and NaN
24.Double Array
25.Obtaining the integer and fractional parts
26.Get the next machine representable number after a number, moving in the direction of another number.
27.Returns the sign for double precision x
28.Gets the maximum of three double values.
29.Gets the minimum of three double values.
30.Compare two double values with Double.doubleToLongBits
31.Converts altitude in meters to pressure in msw