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.
.
.
Click on the title for the solution
.
.
while (n > 10 || n < 1)
{cin>>n;}
.
Click on the title for the solution
.
.
This is the answer:
:
while (n > 10 || n < 1)
{cin>>n;}
Comments
Post a Comment