Write a program that reads a list of integers, and outputs those integers in reverse. You must use an array for this lab
Posted: Sun Jul 03, 2022 12:01 pm
Write a program that reads a list of integers, and outputs those integers in reverse. You must use an array for this lab. The input begins with an integer indicating the number of integers that follow. For coding simplicity, follow each output integer by a space, including the last one. Ex: If the input is: 5 2 4 6 8 10 the output is: 10 8 6 4 25 To achieve the above, first read the integers into an array. Then output the array in reverse.