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

  • Home
  • SEARCH
  • 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 3346660
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:19:49+00:00 2026-05-18T01:19:49+00:00

I would like to generate random numbers between 1 & 10, with a decimal

  • 0
I would like to generate random numbers between 1 & 10, with a decimal place of 1 
(e.g. 1.5, 9.4, 6.3, 2.9)

I would like to generate random numbers between 1 & 10, with 2 decimal places
(e.g. 1.51, 9.46, 6.32, 2.93)

I would like to generate random numbers between 1 & 10, with 3 decimal places

    (e.g. 1.512, 9.346, 6.329, 2.935)

One solution would be to have a random generator just for the decimal places and then concatenate with the number. Is there a simpler way to achieve this?

  • 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-18T01:19:49+00:00Added an answer on May 18, 2026 at 1:19 am

    Although BigDecimal solutions are more flexible, here’s a simpler solution using int and double. This method takes a Random object, an upper and lower bound and a number of decimal places and returns an accordingly formatted string:

    /**
     * Generate a decimal string representation of a random number within the
     * supplied bounds.
     * 
     * @param random
     *            the random object (if null, a new one will be created)
     * @param lowerBound
     *            the lower bound, inclusive
     * @param upperBound
     *            the upper bound, inclusive
     * @param decimalPlaces
     *            the decimal places of the result
     * @return the formatted string
     */
    public static String getRandomValue(final Random random,
        final int lowerBound,
        final int upperBound,
        final int decimalPlaces){
    
        if(lowerBound < 0 || upperBound <= lowerBound || decimalPlaces < 0){
            throw new IllegalArgumentException("Put error message here");
        }
    
        final double dbl =
            ((random == null ? new Random() : random).nextDouble() //
                * (upperBound - lowerBound))
                + lowerBound;
        return String.format("%." + decimalPlaces + "f", dbl);
    
    }
    

    Test Code:

    final Random rnd = new Random();
    
    for(int decpl = 0; decpl < 3; decpl++){
        for(int low = 0; low < 2; low++){
            for(int high = low + 1; high < low + 3; high++){
                System.out.println("Random Value between " + low + " and "
                    + high + " with " + decpl + " decimal places:");
                System.out.println(getRandomValue(rnd, low, high, decpl));
            }
        }
    }
    

    Output:

    Random Value between 0 and 1 with 0 decimal places:
    0
    Random Value between 0 and 2 with 0 decimal places:
    1
    Random Value between 1 and 2 with 0 decimal places:
    1
    Random Value between 1 and 3 with 0 decimal places:
    3
    Random Value between 0 and 1 with 1 decimal places:
    0.6
    Random Value between 0 and 2 with 1 decimal places:
    1.5
    Random Value between 1 and 2 with 1 decimal places:
    1.1
    Random Value between 1 and 3 with 1 decimal places:
    1.9
    Random Value between 0 and 1 with 2 decimal places:
    0.52
    Random Value between 0 and 2 with 2 decimal places:
    0.82
    Random Value between 1 and 2 with 2 decimal places:
    1.75
    Random Value between 1 and 3 with 2 decimal places:
    1.10
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to generate a random floating point number between 2 values. What
I need to generate random text strings of a particular format. Would like some
How would I generate a random date that has to be between two other
I would like to generate a WSDL file from a c++ atl webservice without
I would like to generate a list of files within a directory. Some of
I have a project where I would like to generate a report export in
I would like to force svcutil to generate all data contracts in an assembly
What I would like is be able to generate a simple report that is
I need to generate a directory in my makefile and I would like to
I'm trying to write some LINQ To SQL code that would generate SQL like

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.