Question: String dataString is read from input. dataString contains a mix of letters, digits, and other characters. For each digit that appears in dataString, append the

String dataString is read from input. dataString contains a mix of letters, digits, and other characters. For each digit that appears in dataString, append the digit to digitPart. Ex: If the input is Make: 1980, then the output is: 1980 Note: Character.isDigit(dataString.charAt(i)) returns true if the character at index i of dataString is a digit. public class ExtractDigits { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); String dataString; int i; String digitPart = ""; dataString = scnr.nextLine(); /* Your code goes here */ System.out.println(digitPart); } }

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 Programming Questions!