Question: Determine if the first number is larger than, smaller than, or equal to the second number.
Display an appropriate text string informing the user of the results.
- Create a loop structure to display all integer values BETWEEN the smaller and larger number provided.
- Implement a For Loop that displays the following set of numbers:
0, 10, 20, 30, 40, 50 ... 1000
- Implement a For Loop that displays the following set of numbers:
100, 95, 90, 85 ... 0
- Implement a loop that calculates the total of the following series of numbers:
1/30 + 2/29 + 3/28 + 4/27 + ... 30/1
You need to find the first number is larger, smaller or equal to the second number.