QUESTION 1: Program to input 3 exam scores, drop the lowest score, and output the average of the remaining 2 scores.
Question 2: Program to input two integers from the user, and output every other integer in that range, inclusive. For example, if the inputs are 10 and 20, then your program should output:
10, 12, 14, 16, 18, 20
If the inputs are 11 and 20, then your program should output:
11, 13, 15, 17, 19