Question: Variable inString is assigned with a 2-character string read from input. If inString's first character is not a digit, output The first character is not

Variable inString is assigned with a 2-character string read from input. If inString's first character is not a digit, output "The first character is not a digit." Otherwise, output "The first character is a digit: " followed by the digit. End each output with a newline. Ex: If the input is &3, then the output is: The first character is not a digit. import java.util.Scanner; public class StringModification { public static void main(String args) { Scanner scnr = new Scanner(System.in); String inString; inString = scnr.nextLine()

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!