122k views
1 vote
Given an int variable n that has already been declared, write some code that repeatedly reads a value into n until at last a number between 1 and 10 (inclusive) has been entered. ASSUME the availability of a variable, stdin, that references a Scanner object associated with standard input.

User Pictoru
by
5.5k points

1 Answer

1 vote

Answer:

do

{

n = stdin.nextInt();

}

while (n > 10 || n < 1);

Step-by-step explanation:

User Anshuk Garg
by
5.1k points