Java Double Number Round round(double a, int rounding_style)

Here you can find the source of round(double a, int rounding_style)

Description

Returns the mathematically rounded part of a double value.

License

Open Source License

Declaration

public static int round(double a, int rounding_style) 

Method Source Code

//package com.java2s;

public class Main {
    /**//w  w  w  .  j  a va 2  s. c om
     * Returns the mathematically rounded part of a
     * <code>double</code> value.
     */
    public static int round(double a, int rounding_style) {
        throw new UnsupportedOperationException("not yet implemented");
    }
}

Related

  1. round(double a)
  2. Round(double a)
  3. round(double a, double precision)
  4. round(double a, int cutOfDigits)
  5. round(double a, int decimal)
  6. round(double amount)
  7. round(double amt, int digits)
  8. round(double d)
  9. round(double d)