Java On Get a random number within ...

by diskostu, October 02, 2007 01:01

Thanks for your infos Gordo...

5b43e682db733a3140aceafa4f474afb Talk
1
2
3
public static long randomNumber(int min, int max) {
	return Math.round((Math.random() * (max - min)) + min);
}

Java Get a random number within ...

by diskostu, October 01, 2007 00:50, 8 refactorings

The title sais it: you'll g...

5b43e682db733a3140aceafa4f474afb Talk