Mon Aug 23 2021
Hello World
Java Programming1231 views
File Name: hello-world.java
import java.io.*;
class helloworld {
public static void main(String args[ ]) {
/* Display text on the screen */
System.out.println("Hello World!");
}
}
/* Output */
/* Hello World! */
Author:Geekboots