$24
Objectives:
Use looping and branching control structures
Construct counter, sentinel, flag, and EOF controlled repetition structures.
Debug repetition structures
Question 1:
Write a program that uses while loops performing the following steps:
Prompt the user to input two integers: firstNum and secondNum (firstNum must be less than secondNum).
Output the numbers between (inclusive) firstNum and secondNum.
Output the sum of the numbers between (inclusive) firstNum and secondNum.
Output all odd numbers between (exclusive) firstNum and secondNum.
Match the output of the examples below.
Example 1:
Enter two space separated numbers: 5 13 5678910111213 Sum is: 81
7911
Question 2:
Write a program that uses for loops that performs the same steps as Question 1. Match the output of the examples below.
Example 1:
Enter two space separated numbers: 7 12
789101112
Sum is: 57
9 11