- 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?
}
}
-
In Initials.java, add your first name and last name.
-
Print out the initials of the
firstName
andlastName
.
Example solution can be found in the Initials.java file