Advertisement
Guest User

Untitled

a guest
Sep 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. public static void main(String[] args) {
  2.     int[] highscoreArray = new int[5];
  3.     int[] diceSumArray = new int[5];
  4.     diceSumArray[0] = 11;
  5.     diceSumArray[1] = 12;
  6.     diceSumArray[2] = 10;
  7.     diceSumArray[3] = 20;
  8.     diceSumArray[4] = 17;
  9.     highscore(diceSumArray, highscoreArray);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement