I need help with a Java question so that it can output them described in the image below: import java.util.Scanner; public class LabProgram {     public static void main(String[] args) {         Scanner scnr = new Scanner(System.in);         int[] userList = new int[20];          int numElements;          numElements = scnr.nextInt();          for (int i = 0; i < numElements; i++) {             userList[i] = scnr.nextInt();         }         for (int i = numElements - 1; i >= 0; i--) {             System.out.print(userList[i]);             if (i > 0) {                 System.out.print(",");             }         }     } }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter10: Pointers
Section10.1: Addresses And Pointers
Problem 5E
icon
Related questions
Question

I need help with a Java question so that it can output them described in the image below:

import java.util.Scanner;

public class LabProgram {
    public static void main(String[] args) {
        Scanner scnr = new Scanner(System.in);
        int[] userList = new int[20]; 
        int numElements; 

        numElements = scnr.nextInt(); 


        for (int i = 0; i < numElements; i++) {
            userList[i] = scnr.nextInt();
        }


        for (int i = numElements - 1; i >= 0; i--) {
            System.out.print(userList[i]);


            if (i > 0) {
                System.out.print(",");
            }
        }
    }
}

1:Compare output
Output differs. See highlights below. Special character legend
Input
Your output
Expected output
2:Compare output ^
Input
Your output
3:Compare output
Expected output
5 2 4 6 8 10
Output differs. See highlights below.
10, 8, 6, 4, 2
10, 8,6,4,
.2,<
6 42 53 19 18 100 12
Special character legend
12,100,18,19,53, 42
12,100,18,19,53, 42, H
Input 19
Output differs. See highlights below. Special character legend
Your output 9
Expected output 9.4
Transcribed Image Text:1:Compare output Output differs. See highlights below. Special character legend Input Your output Expected output 2:Compare output ^ Input Your output 3:Compare output Expected output 5 2 4 6 8 10 Output differs. See highlights below. 10, 8, 6, 4, 2 10, 8,6,4, .2,< 6 42 53 19 18 100 12 Special character legend 12,100,18,19,53, 42 12,100,18,19,53, 42, H Input 19 Output differs. See highlights below. Special character legend Your output 9 Expected output 9.4
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Adjacency Matrix
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr