Question
You are required to design and develop a C program that can store up to 50 integers, print them in reverse and sum all the
You are required to design and develop a C program that can store up to 50 integers, print them in reverse and sum all the odd and even numbers separately. The program should ask user to first key in how many integers he/she would like to enter. Using a repetition structure (use a for loop), prompt user to enter the desired amount of integers into an array, then total up odd and even numbers separately. The program should then use another repetition structure to print users input in reverse. Finally, print out the total of odd and even integers at the end. The example output is shown in Figure 5
How many number would you like to enter (maximum 50 numbers only): 10 Enter number 1: 2 Enter number 2: 3 Enter number 3: 6 Enter number 4: 5 Enter number 5: 4 Enter number 6: 4 Enter number 7: 8 Enter number 8: 18 Enter number 9: 21 Enter number 10: 3 You entered numbers in reverse = 3 21 18 8 4 4 5 6 3 2 The sum of all odd numbers = 32 The sum of all even numbers End of Program 42 Timro 5Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started