choe
-1
Q:

java random number between 100 and 999

int upperBound = 999;
int lowerBound = 100;
int number = lowerBound + (int)(Math.random() * ((upperBound - lowerBound) + 1));
-1

New to Communities?

Join the community