A computer screen displaying Java code with the text 'Java Programming'" Caption: "Coding in Java
Coding in Java

Write a class that declares variables to hold your three initials. J.M.F

Table of Contents

Statement

Write a class that declares variables to hold your three initials. Display the three
initials with a period following each one, as in J.M.F. Save the class as Initials.java.

public class Initials {
    public static void main(String[] args) {
        char init1='J',init2='M',init3='F';
        System.out.println(init1+"."+init2+"."+init3);

    }
}