algoritmy0599

Main AG

May 26th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public class Main {
  2.  
  3. public static void main(String[] args) {
  4.  
  5.  
  6.  
  7. String[] namesOfGolfers = {
  8. "Tiger Woods", "Laura Davies", "Petter Allis", "Brooks Koepka", "Klára Spilková",
  9. "Kathy Whitworth", "Alan Babický", "Rickie Fowler", "Jon Rahm", "Lee Trevino"};
  10.  
  11. int[] parsPerHole = {3, 3, 4, 5, 4, 5, 3, 3, 4}; // pary na jednotlivych jamkach
  12.  
  13. Golftournament gt = new Golftournament(parsPerHole, namesOfGolfers);
  14. gt.generateResults();
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment