Examples
- Hello World Program in Java (Print Hello World in Java)
- Java Program to Add Two Numbers (Java Sum / Addition)
- Find Greatest of Three Numbers in Java (Largest Number Program)
- Prime Number Program in Java (Code to Check Prime or Not)
- Java Program for Fibonacci Series (Using for, while, recursion, scanner)
- Factorial Program in Java (Find Factorial of a Number in Java)
- How to Find Sum of Digits of a Number in Java?
- How to Reverse a Number in Java? Program & Examples
- How to Swap Two Numbers in Java? Programs With/Without Third Variable
- Even Odd Program in Java (Program to Check Number is Even or Odd)
- Vowel and Consonant Program in Java
- Java Program for Quadratic Equation (Find Roots With 3 Ways)
- Find Frequency of Characters in a String in Java (4 Ways)
- Remove Space from String in Java (Remove Whitespace)
- String Null Check in Java (String is Empty or Null) - 5 Ways
- How to Print String in Java? 6 Methods
- How to Get ASCII Value of Char in Java? Find ASCII Value
Hello World Program in Java (Print Hello World in Java)
In computer programming, few moments hold as much significance and nostalgia as writing your very first program. It marks the inception of a new journey into coding, where your ideas and imagination come to life through logic and syntax.
Hello World program in Java is a traditional starting point for countless programmers. It is the simplest Java program that you can write with just a few lines of code.
In this tutorial, let’s take the very first step and write a program in Java to print Hello World.
Let's begin!
Java Program for Hello World
Below is a simple Java program to print "Hello, World!":
Code
//Java Hello World Program
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
Output
Hello, World!
Explanation
-
The public class HelloWorld line declares a Java class named "HelloWorld". In Java, a class is a blueprint for creating objects that encapsulate data and behavior.
-
The public static void main(String[] args) is the program's entry point. It is a special method that serves as the starting point for the execution of a Java program. The main method takes an array of strings as input, commonly called "command-line arguments" (although not used in this example).
-
The System.out.println("Hello, World!") statement is responsible for printing the "Hello, World!" in Java. The System.out.println method displays the output.
Congratulations! You've successfully written and executed the Java program for Hello World.
Learn Next: