Question: The following if statement determines whether choice is equal to Y or y: If (choice == 'Y' || choice == 'y') Rewrite this statement so
The following if statement determines whether choice is equal to ‘Y’ or ‘y’:
If (choice == 'Y' || choice == 'y')
Rewrite this statement so it makes only one comparison and does not use the || operator.
Step by Step Solution
3.34 Rating (163 Votes )
There are 3 Steps involved in it
If choice Y choice y becomes If choice Y choice y The operator ... View full answer
Get step-by-step solutions from verified subject matter experts
