Programming Drill #5

Due: Wednesday, September 19
Goal:  Use an if-else statement with && and ||

Write a program (using any IDE you like) that inputs an integer.  If the integer is greater than 100 or between 50 and 75 (inclusive) then output YES.  Otherwise, output NO.  Your program should use an if-else statement along with && (and) and || (or) relational operators.

Examples of numbers that would result in an output of YES:  101, 50, 75, 55, 70, 71, 250
Examples of numbers that would result in an output of NO: 49, 76, 100, 80, 10, -50, 0

Show your program to your instructor or email it to kenrick@uaa.alaska.edu by the end of the day for full credit.