Question: Write a program so that it reads the user's first and last name (read an entire line as a single string), then prints the last
Write a program so that it reads the user's first and last name (read an entire line as a single string), then prints the last name followed by a comma and the first initial.
You can assume that the user types a valid name. Note that program reads entire line, not just one word!
Example:
Type your name: Olga Glebova
Your name is: Glebova, O. //output
import java.util.*; // for Scanner
public class ProcessName {
public static void main(String[] args) { Scanner console = new Scanner(System.in);
System.out.print("Type your name: ");
// Answer:
// your code goes here
System.out.println("Your name is: " + name);
} // for main
} // for class
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
