Introduction To Programming // PART 1: YOUR CODE STARTS AFTER THIS LINE: to complete the exercise.
Sample Part 1 Output:
First Number: 25
Second Number: 10
Calculations:
25 * 10 = 250
25 / 10 = 2.5
Write a program that asks a user to enter 5 numbers. The program will calculate the modulo of each number. The program will display the entered numbers and the modulo of each number.
The List of Input Variables:
The List of Output Variables:
The Process Checklist:
Sample Part 2 Output:
Modulo:
(34 % 2) is 0
(12 % 2) is 0
(15 % 2) is 1
(24 % 2) is 0
(77 % 2) is 1