Java Random randomAgain()

Here you can find the source of randomAgain()

Description

random Again

License

Apache License

Declaration

private static int randomAgain() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static int randomAgain() {

        int r = (int) (58 * Math.random() + 65);

        if (r > 90 && r < 97) {

            return randomAgain();
        }/*from   w  ww.  j  a  v a2  s.c o m*/

        return r;
    }
}

Related

  1. random(int min, int max)
  2. random(List list, Random random)
  3. random4DigitNumber()
  4. random_g729()
  5. random_g729()
  6. randomAlpha()
  7. randomAlternate(char c)
  8. randomCharacterVector(int size)
  9. RandomCode()