0
Array
For the score I put how do I set it so user input below a number or above a certain number is not accepted https://code.sololearn.com/ckJI592IJJnf/?ref=app
3 Answers
+ 2
Actually let me figure that out! Thank you so much!
+ 1
int score = read.nextInt();
if (score >= minScore && score <= maxScore) {
scores[i-1] = score;
};
0
Omg thank you were would input thag at in my code