Question: Write a complete Java program to read in the user s first and last initials and write them out. I keep getting this error import

Write a complete Java program to read in the users first and last initials and write them out. I keep getting this error import java.util.scanner;
public class Initials {
public static void main(String[] args){
Scanner scanner = new Scanner(
System.in);
System.out.println("Enter your first initial: ");
char firstInitial = scanner.next().charAt(0);
System.out.println("Enter your last initial: ");
char lastInitial = scanner.next().charAt(\theta);
System.out.println("Your initials are: "+ firstInitial + lastInitial);
scanner.close();
}
}
Write a complete Java program to read in the user

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