Program to print the following message on the console screen:

"Hello World!
 Welcome to the world of Java Programming.
 Let us learn Java Programming."

class HelloWorld3{
    
public static void main (String[] args){
        
System.out.println ("Hello World!\nWelcome to the world of Java Programming..\nLet us learn Java Programming.\n");
    }
}

Save this program as 'HelloWorld3.java'.
Compile: $javac HelloWorld3.java
Execute: $java HelloWorld3

Output:

Hello World!
Welcome to the world of Java Programming.