Question: *** JAVA *** Retype and correct the code provided to combine two stringsseparated by a space. secretID.concat(spaceChar); secretID.concat(lastName); import java.util.Scanner; public class CombiningStrings { public
*** JAVA ***
Retype and correct the code provided to combine two stringsseparated by a space.
secretID.concat(spaceChar); secretID.concat(lastName);
import java.util.Scanner;
public class CombiningStrings {
public static void main (String [] args) {
String secretID = "Barry";
String lastName = "Allen";
char spaceChar = ' ';
/* Your solution goes here */
System.out.println(secretID);
return;
}
}
Step by Step Solution
3.54 Rating (157 Votes )
There are 3 Steps involved in it
Answer import javautilScanner public class CombiningStrings p... View full answer
Get step-by-step solutions from verified subject matter experts
