Write code that uses the input string stream inss to read


Write code that uses the input string stream inSS to read input data from string userInput, and updates variables userMonth, userDate, and userYear.

Sample output if userinput is "Jan 12 1992":Month: Jan
Date: 12
Year: 1992
import java.util.Scanner;

public class StringInputStream {
public static void main (String [] args) {
Scanner inSS = null;
String userInput = "Jan 12 1992";
inSS = new Scanner(userInput);

String userMonth = "";
int userDate = 0;
int userYear = 0;


inSS = new Scanner(userInput);
inSS = inSS.next();
inSS = inSS.next();

 

System.out.println("Month: " + userMonth);
System.out.println("Date: " + userDate);
System.out.println("Year: " + userYear);

return;
}
}

 

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Write code that uses the input string stream inss to read
Reference No:- TGS02361199

Now Priced at $10 (50% Discount)

Recommended (97%)

Rated (4.9/5)