This folder contains beginner-level Java programs that build a foundation for understanding syntax, data types, operators, and input/output operations.
| File | Description |
|---|---|
| HelloWorld.java | Prints a welcome message — your first Java program. |
| OperatorsDemo.java | Demonstrates arithmetic, relational, and logical operators. |
| InputOutput.java | Takes user input using Scanner and displays formatted output. |
Program structure (class, main)
Operators in Java
Using Scanner for input
Printing and formatting output
javac *.java
java HelloWorld