A basic application that simulates a tennis tournament.
Explore the docs »
·
Report Bug
·
Request Feature
Table of Contents
This project was developed to simulate a tennis tournament (or a tournament of any kind). The idea is that the user can enter in how many teams are playing and how many players are on each team. After that, the user can enter in scores for each team and match until a winner has been identified through the tournament. Upon execution of the main program the user will:
- Select how many teams will play.
- Select how many players are on each team.
- Matches between teams are randomly selected.
- The user can then enter in scores for each match until a winning team is identified.
First, we'll need to:
- Copy this repo to your machine.
- Run the application using the gradle wrapper.
Please see the instructions that follow:
- Clone the repo
git clone https://github.com/jwhaubrich/TennisTournament.git
- Navigate to local directory where the repo is located on your machine and double-click into the TennisTournament folder.
- In that same directory, run the following command to execute the main method inside the application:
./gradlew run
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git switch -c feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Joe Haubrich - @joe_haubrich - jwhaubrich@gmail.com
Project Link: https://github.com/jwhaubrich/Simple-Calculator