Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kosteklvp committed Mar 13, 2023
2 parents 3eb761d + b9c24ac commit 69ac4c4
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Bowling Results Reporting System

This is an application for reporting bowling results in table. The user of the system should be able to enter a text file with a sequence of game results in bowling, and then get the results in the form of a table.
This is an application for reporting bowling results in a table. The user of the system should be able to enter a text file with a sequence of game results in bowling, and then get the results in the form of a table.

## Launching

Download executable jar file from **Releases** section and run it in command line. As the first argument, you must specify the path to the text file with the sequence of game results.
Download executable jar file from **Releases** section and run it in command line. As the first argument, you must specify the path to the text file with the sequence of game results. Java 17 is required to run it.

![example-cmd](https://user-images.githubusercontent.com/29569674/224686413-9d76b4c9-c8d8-4547-b5d5-c9a9afc577e6.jpg)

**example.txt**
#### Characters explanation
[/] - spare , [X] - strike, [ ] - precedes a strike / no roll

#### Example text file

Kamil Stoch
1, 9, 0, 9, 9, 0, 6, 0, 1, 5, 7, 0, 8, 2, 7, 0, 9, 0, 10, 10, 0
Expand All @@ -19,11 +22,14 @@ Download executable jar file from **Releases** section and run it in command lin
Stefan Hula
9, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0, 9, 0

More example files can be found: link
More example files can be found in [/examples](https://github.com/kosteklvp/bowling-results-reporting-system/tree/main/examples) folder.

File should contain lines with the player's name and a sequence of points alternating. Blank lines in between are allowed.
Only numbers between 0 and 10 are allowed. There can be from 11 to 21 numbers in one player sequence.

## Used tooling

- Java 17
- Maven
- Maven 4.0.0-alpha
- JUnit 5
- Eclipse 2022-12

0 comments on commit 69ac4c4

Please sign in to comment.