Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Main {
- public static void main(String[] args) {
- String[] namesOfGolfers = {
- "Tiger Woods", "Laura Davies", "Petter Allis", "Brooks Koepka", "Klára Spilková",
- "Kathy Whitworth", "Alan Babický", "Rickie Fowler", "Jon Rahm", "Lee Trevino"};
- int[] parsPerHole = {3, 3, 4, 5, 4, 5, 3, 3, 4}; // pary na jednotlivych jamkach
- Golftournament gt = new Golftournament(parsPerHole, namesOfGolfers);
- gt.generateResults();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment