Java Random Int randInt()

Here you can find the source of randInt()

Description

Method for getting random number in range (0,000-1,000)

License

Open Source License

Declaration

public static double randInt() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    /**//w  w  w  . j a  v  a  2 s.  c  o m
     * Method for getting random number in range (0,000-1,000)
     *
     * @return
     */
    public static double randInt() {
        return Math.random();
    }
}

Related

  1. getRandomIntStr(int len)
  2. rand(int min, int max)
  3. rand(int size)
  4. randBetween(int min, int max)
  5. randInRangeInc(int min, int max)
  6. randInt()
  7. randInt(int l)
  8. randInt(int low, int high)
  9. randInt(int max)