140k views
3 votes
Write a C program that:

1)Asks the user to enter 5 numbers
-Store the numbers in an array
-Use loops for input and printing
2)Prints those numbers back out to the screen
-All numbers on the same line (with spaces between)
3)Prints the numbers in reverse order
-All numbers on the same line (with spaces between)
4)Prints the first number
5)Prints the last number
6)Prints the maximum number entered
7)Prints the minimum number entered
For full credit, make sure your program would be easy to scale up.

User DaCh
by
8.4k points

1 Answer

6 votes

Final answer:

To write a C program that performs various operations on an array of numbers entered by the user, you would need to use loops and appropriate variables. You would first ask the user for input and store the numbers in an array. Then, you could use loops to print the numbers, print them in reverse order, print the first and last numbers, as well as find and print the maximum and minimum numbers entered.

Step-by-step explanation:

  1. Create an integer array to store the 5 numbers entered by the user.
  2. Use a loop to ask the user for input and store the numbers in the array.
  3. Use another loop to print the numbers back out to the screen with spaces between them.
  4. Use a loop to print the numbers in reverse order with spaces between them.
  5. Print the first number by accessing the first element of the array.
  6. Print the last number by accessing the last element of the array.
  7. Initialize variables to keep track of the maximum and minimum numbers entered. Use a loop to compare each number with the current maximum and minimum and update the variables accordingly.
  8. Print the maximum number and minimum number by using the variables storing the maximum and minimum values.

User NehaG
by
7.2k points