Question: Write a Java application program (name the file as DigitReverse.java) that will get multiple non-negative integers from the keyboard, one at a time (-1 to

Write a Java application program (name the file as DigitReverse.java) that will get multiple non-negative integers from the keyboard, one at a time (-1 to exit). For each integer, it should print the digits in reverse order, one per line. Your program should include the main method and a method called digitExtract. You main method should allow user to enter multiple integers (non-negative integers, except for -1). The digitExtract( ) method has an integer as a parameter. The method should break up the integer into individual digits (using some simple math) and print them to the screen in reverse order, with each digit appearing on a separate line. For example: Please enter a non-negative integer (-1 to exit): 57321 Your number printed in reverse order is: 1 2 3 7 5 Please enter a non-negative integer (-1 to exit): 0 Your number printed in reverse order is: 0 Please enter a non-negative integer (-1 to exit): -1

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!