Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7011583
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:08:45+00:00 2026-05-27T22:08:45+00:00

How to get the double value that is only two digit after decimal point.

  • 0

How to get the double value that is only two digit after decimal point.

For example if the a = 190253.80846153846
then the result value should be like a = 190253.80

Try:
I have try with this:

public static DecimalFormat twoDForm = new DecimalFormat("#0.00");

in code

a = Double.parseDouble(twoDForm.format(((a))));

But i got the value like 190253.81 instead of that i want 190253.80

So what should i have to change for it ??

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T22:08:45+00:00Added an answer on May 27, 2026 at 10:08 pm

    Because Math.round() Returns the closest int to the argument. The result is rounded to an integer by adding 1/2, taking the floor of the result, and casting the result to type int.
    Use Math.floor()

    Example

     public static double roundMyData(double Rval, int numberOfDigitsAfterDecimal) {
                      double p = (float)Math.pow(10,numberOfDigitsAfterDecimal);
                  Rval = Rval * p;
                  double tmp = Math.floor(Rval);
                  System.out.println("~~~~~~tmp~~~~~"+tmp);
                  return (double)tmp/p;
                  }
    

    Complete Source code

    class ZiggyTest2{
    
    
            public static void main(String[] args) {  
                 double num = 190253.80846153846;
                  double round = roundMyData(num,2);
                  System.out.println("Rounded data: " + round);
                  }
    
                  public static double roundMyData(double Rval, int numberOfDigitsAfterDecimal) {
                      double p = (float)Math.pow(10,numberOfDigitsAfterDecimal);
                  Rval = Rval * p;
                  double tmp = Math.floor(Rval);
                  System.out.println("~~~~~~tmp~~~~~"+tmp);
                  return (double)tmp/p;
                  }
                }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

To get the fraction point value up to two decimal points, I use this
Can someone post an example of how I get an instance variable value that
I am trying to multiply a double value by -1 to get the negative
I have an owner-drawn UserControl where I've implemented double-buffering. In order to get double-buffering
I'm curious if anyone knows of a way to easily get a double border
Snippets: private double memberVal; public double MemberVal { get { return memberVal; } set
I have such class public unsafe class EigenSolver { public double* aPtr {get; private
How do I get whole and fractional parts from double in JSP/Java ? If
Is there any straightforward way to get the mantissa and exponent from a double
When I alt(option) double-click a keyword in Xcode 3.2, I get the following popup:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.