Ad

I have built two small projects. I wanna with u guys together compare and improve my code quality as well as urs :)
Project A:
Console based bowling game with Java.
-> like the title, it's a game. There are totally 10 rounds per game, after that, the total score will be calculated as usual bowling game. The user can chooose direction as well as strengh.

Project B:
Console library
-> there are three kinds of CSV files: Book, Author and Magazine. The User can choose all books of one specific Author; Can also choose all magazines of one specific Author; Can Based book lookup the information of specifc Author, like his email adresse, or firstname, lastname etc..

I have create two github reposity of my solutions:
Project A: https://github.com/PigeonT/bowling
Project B: https://github.com/PigeonT/bookcontroller

var a = 0;

I have built two project:

Project A: Using Java built one console bowling game.
The User can play for ten rounds. After that the score will be calculated based on real bowling score rule.

Project B: Built one very simple console project that read three CSV files. One is author, One is book and one is magazine. The Auther has Email, Firstname, Lastname, books, maganzin column.
Book has ISBN, bookname, author.
Magazin has ISBN, magazin name, author.

The User can search book based one author name, ISBN etc.
The User can also search the user infomation (firstname, email..) based one book named.

Code are in github repository:
Bowling Game is https://github.com/PigeonT/bowling
Book project is https://github.com/PigeonT/bookcontroller

8