Write a Program to Print "Hello World"

// Write a Program to Print Hello World

public class Code1 {

public static void main(String[] args) {

//simply print hello world System.out.println("Hello World");

}

}

Comments

Popular posts from this blog

Write a program in Java to find second maximum of n numbers without using arrays