Page 1 of 1

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
by answerhappygod
Write A Program That Reads A List Of Integers And Outputs Those Integers In Reverse You Must Use An Array For This Lab 1
Write A Program That Reads A List Of Integers And Outputs Those Integers In Reverse You Must Use An Array For This Lab 1 (71.31 KiB) Viewed 25 times
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.