- 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 23 times
Write a program that reads a list of integers, and outputs those integers in reverse. You must use an array for this lab
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Write a program that reads a list of integers, and outputs those integers in reverse. You must use an array for this lab
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.