Comprehensive notes and code examples from the Java programming course in Korea IT Academy.
java-class-notes/
├── day01-Java-Introduction/
│ ├── korNotes.md
│ ├── README.md
│ └── code-examples/
├── day02-Variables-DataTypes/
│ ├── korNotes.md
│ ├── README.md
│ └── CodeExample/
└── ...
Each daily folder contains:
- Korean notes (
korNotes.md) - Class notes in Korean - English notes (
README.md) - Translated and expanded notes - Code examples (
code-examples/) - Practical implementations from class
- Day 01: Java Introduction & History (2025/06/23)
- Day 02: Java Data Types, Variables, Casting (2025/06/24)
- Day 03: Java Input, Operator (2025/06/25)
- Day 04: Java Control Statements (2025/06/26)
-
Prerequisites
- JDK 8 or higher
- IDE (IntelliJ IDEA, Eclipse, or VS Code)
-
Running Code Examples
cd dayXX-topic/code-examples/ javac *.java java ClassName
- Browse topics by day folders
- Choose Korean or English notes based on preference
- Practice with provided code examples
Apache2.0 License
