Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

charAt()

  1. Start with this code
public class Initials {
  
	public static void main(String[] args) {
    
    // Add a first name and a last name:
    String firstName = "";  
    String lastName = "";
    
    // What are the initials?
    
    
  }
  
}
  1. In Initials.java, add your first name and last name.

  2. Print out the initials of the firstName and lastName.

Example solution can be found in the Initials.java file