Sunday 22 March 2020

JAVA LANGUAGE FIRST PROGRAM "HELLO WORLD"

Q-1-Write a java program to display following messages
                                      "Hello World"
INPUT :
        //NCM-New Coding Master :You Can Give Anything To The Class Name
public class NCM {

public static void main(String[] args) {
         
System.out.println("Hello World!");
      //It Will Print The Message
}

}
OUTPUT :
Hello World!

1 comment: