All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.hirono.randomnumbergenerator.RandomNumberGenerator Maven / Gradle / Ivy

The newest version!
package me.hirono.randomnumbergenerator;

import java.util.Random;

/**
 * @author jeffery.hirono
 */
public class RandomNumberGenerator {
	public int getNumber() {
		Random rand = new Random();

		int  n = rand.nextInt(50) + 1;
		return n;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy