Aug 23, 2021
Hello World
Java Programming 1174 views
import java.io.*;
class helloworld {
public static void main(String args[ ]) {
/* Display text on the screen */
System.out.println("Hello World!");
}
}
/* Output */
/* Hello World! */
Copy Code