Java Online Compiler
Example: Hello World Program in Java Using Main Method
C
C++
C#
Java
Python
PHP
Main.java
STDIN
Run
// HELLO WORLD PROGRAM IN JAVA USING MAIN METHOD // Java System.out.println() function // Java main() method public class Main { // It's the main function of the program public static void main(String[] args) { // Step-1 Display a label message System.out.println("JAVA HELLO WORLD PROGRAM"); // Step-2 Print the actual Hello World message System.out.println("HELLO, WORLD!"); } }
Output
Clear
ADVERTISEMENTS