This repository contains basic Java programs for learning and practice.
- Hello World Program
- Calculator Program
- Exception Handling Example
- Multithreading Example
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}This program prints Hello, World! on the console. It is the first program most beginners write when learning Java.
- Install Java (JDK).
- Save the file as
HelloWorld.java. - Compile the program:
javac HelloWorld.java
- Run the program:
java HelloWorld
Aditya Kumar