Rand. nextint(a) * B + C (java random generator problem)
Write code that generates a random odd integer (not divisible by 2) between 50 and 99 inclusive. Fill in the values of the sub-expressions labeled A, B, and C below. Random rand = new Random(); int n = rand.nextInt(A) * B + C;
Ответ: A = 25; B = 2; C =51
Что я уже пробовал:
I dont get the answer. rand.nextInt(25) meansa range of 0-24 right. Then, you multiply by 2 so the range becomes 0-48. Last you add 51 so the final range becomes 51 - 99, but the problem says the range is 50-99. Can someone explain to me how to get range of 50-99 with answers of A = 25; B = 2; C =51
Mohibur Rashid
Ваш вопрос недостаточно ясен, чтобы ответить на него. Также похоже, что A, B, C являются постоянными для выполнения требования больше 50, только нечетные и меньше 100.
Может быть, сначала обсудите с учителем свое задание