Question: solve CHALLENGE ACTIVITY 3.14.1: String access operations. 703234 5259138.qx3my7 Jump to level 1 1 Given string userDate on one line and string currYear on the
solve
CHALLENGE ACTIVITY 3.14.1: String access operations. 703234 5259138.qx3my7 Jump to level 1 1 Given string userDate on one line and string currYear on the next line, append a comma and a space to userDate. Then, 2 append currYear to userDate. Ex: If the input is: 3 May 6 2000 then the output is: May 6, 2000 1 import java. util. Scanner; public class StringAppend { public static void main(String args) { Scanner scor = new Scanner(System. in); String userDate; 7 String currYear; g userDate = scor. nextLine(); 10 currYear = scor . nextLine(); 11 12 * your code goes here Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
