Question: What am I doing wrong? coded in Java. Instructions Write a program named Reorder 38 that prompts the user tor three integers and prints them
What am I doing wrong? coded in Java.


Instructions Write a program named Reorder 38 that prompts the user tor three integers and prints them out, on the same line, each separated from the other by single space, in reverse of the order they were entered. So if the user enters 5 88 2, the program prints 2 88 5 (on one line) Additional Noies. Regarding your code's standard oviput, Codelab will check for case errors and will check whicscace tabs, spaces, moulines) exally Interactive Session ? Submit Reset History (4 of 4) 02/24:21 10:49:19 - Reorder 3.java import java.util.Scanner; class Randerse public stati main(string are[1 x Scanner s = new Scanner(System.in); System.out.println("Enter threa intagars: "); int a - s.nextInto; int b5.nextInt(); int C - 5.nextInt(); Systen.out.print(""+""+ a); CodeLab Analysis: Logical Error(s) . Nothing was printed to stdout and is therefore incorrect Your Submission Start Debugger Reorder3.java i import java.util.Scanner; class Reader { public static void main(String args[] X Scanners Scanner(System.in); System.out.println("Enter three integers: "); int a = 5.nextInt(); int - S.nextInt(); int C = 5.nextInt(); System.out.print(+""+ + "" + a); 12 ) 11 } Test Case Table Test Case stdin stdout Feedback x #1 3 5 42 Nothing was printed to stdout and is therefore incorrect (Click here for more information) X #2 333 452 Nothing was printed to stdout and is therefore incorrect
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
