6.23 LAB: Output numbers in reverse Write a program that reads a list of integers, and outputs those integers in reverse. The input begins with an integer indicating the number of integers that...


C++



6.23 LAB: Output numbers in reverse<br>Write a program that reads a list of integers, and outputs those integers in reverse. The input begins with an integer indicating the number<br>of integers that follow. For coding simplicity, follow each output integer by a comma, including the last one.<br>Ex: If the input is:<br>5 2 4 6 8 10<br>the output is:<br>10,8,6,4,2,<br>To achieve the above, first read the integers into a vector. Then output the vector in reverse.<br>

Extracted text: 6.23 LAB: Output numbers in reverse Write a program that reads a list of integers, and outputs those integers in reverse. The input begins with an integer indicating the number of integers that follow. For coding simplicity, follow each output integer by a comma, including the last one. Ex: If the input is: 5 2 4 6 8 10 the output is: 10,8,6,4,2, To achieve the above, first read the integers into a vector. Then output the vector in reverse.

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Submit New Assignment

Copy and Paste Your Assignment Here