This repository contains solutions and projects developed as part of the Java Programming Course. Each project focuses on different aspects of Java programming, ranging from basic syntax to advanced topics.
To explore any of the projects, follow these steps:
git clone https://github.com/belovezhalin/java-programming-course.gitcd java-programming-course/PROJECT_NAME- You can use an IDE such as IntelliJ IDEA, Eclipse, or VS Code.
- Ensure you have Java Development Kit (JDK 17+) installed.
- If the project requires it, set up a Gradle/Maven build system.
Using terminal:
javac Main.java
java MainUsing an IDE:
- Open the project.
- Configure the run configuration if needed.
- Press "Run" or "Debug" to execute the application.
Using JUnit with Maven:
mvn testUsing Gradle:
gradle test