Java Syntax and Variables
Java Syntax and Variables
# 2. Comments in Java
Comments help explain code but are ignored by Java when running the program.
/*
This is a multi-line comment.
It spans multiple lines.
*/
# Variables in Java
Variables store data in memory. Java is statically typed, meaning we must declare variable types.
# 3. Types of Variables
Example: