Java fundamentals through coding exercises
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.3 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. # Java basics
  2. Java fundamentals through coding exercises.
  3. Contents of this repository are based on [Java programming course material](https://opinto-opas.haaga-helia.fi/course_unit/SWD4TA032) provided by Haaga-Helia University of Applied Sciences.
  4. **NOTE**: Assignments and their descriptions are in Finnish for meanwhile. I have a plan to translate them to English.
  5. ## Contents
  6. - [Basics](src/branch/master/1_basics)
  7. - Description: fundamental code structuring
  8. - [Conditionals](src/branch/master/2_conditionals)
  9. - Description: conditionals in Java
  10. - [Loops](src/branch/master/3_loops)
  11. - Description: `for` and `while` loops in Java
  12. - [Strings](src/branch/master/4_strings)
  13. - Description: String operations in Java
  14. - [Lists](src/branch/master/5_lists)
  15. - Description: List operations in Java
  16. - [Tables](src/branch/master/6_tables)
  17. - Description: Table operations in Java
  18. - [Methods](src/branch/master/7_methods)
  19. - Description: Methods in Java
  20. - [Lottery](src/branch/master/8_lottery_bonus)
  21. - Description: Two bonus assignments
  22. - [Command line tools](src/branch/master/9_clitools)
  23. - Description: Basic day checker
  24. - [Classes and objects](src/branch/master/10_classes-and-objects)
  25. - Description: Custom classes and objects in Java