This repository contains code and practice files for the DIU CPC Club bootcamp. The project is organized by task folders to keep each exercise separate and easy to navigate.
task_1/- First bootcamp task(s)task_2/- Second bootcamp task(s)task_3/- Third bootcamp task(s)
- Open the repository in Visual Studio Code.
- Navigate to the task folder you want to work on.
- Edit the Java files and save your changes.
- Use
clang-formator a code formatter to keep formatting consistent. - Compile and run Java files from the terminal:
javac task_1\ArithmeticOperations.java
java -cp task_1 ArithmeticOperations
Additionally, to run the second task (renamed file):
javac task_2\class_check.java
java -cp task_2 class_checkUse the following commands from the repository root to compile and run each task.
- Windows (PowerShell):
# Task 1
javac task_1\ArithmeticOperations.java
java -cp task_1 ArithmeticOperations
# Task 2
javac task_2\class_check.java
java -cp task_2 class_check- Cross-platform (bash / macOS / Linux):
# Task 1
javac task_1/ArithmeticOperations.java
java -cp task_1 ArithmeticOperations
# Task 2
javac task_2/class_check.java
java -cp task_2 class_check- This repository is for practice and learning during the DIU CPC Club bootcamp.
- Keep each task in its own folder so the code stays organized.
- If you add new tasks, create a new folder like
task_4/.
- The repository uses Java source files.
clang-formatcan be used to format code consistently.
For questions or help, ask your DIU CPC Club instructors or peers.