Question: Write a program that reads a list of integers and outputs those integers in reverse. The input begins with an integer indicating the number
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. Assume that the list will always contain fewer than 20 integers. 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 an array. Then output the array in reverse. 434974.3417574x37 LAB ACTIVITY TL 1 import java.util.Scanner; 2 8 9 10 11 3 public class LabProgram { 4 5 6 7 12 23 5.14.1: LAB: Output numbers in reverse 13 14 15 public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int[] userList int numElements; // Add more variables as needed new int[20]; // List of numElement integers specified by the user // Number of integers in user's List LabProgram.java numElements scnr.nextInt (); /* Type your code here. / // Input begins with number of integers that follow 0/10 Load default template...
Step by Step Solution
There are 3 Steps involved in it
LabProgramjava 1 import javautilScanner 12345678 3 public class LabPr... View full answer
Get step-by-step solutions from verified subject matter experts
