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

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 Databases Questions!