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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started