document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //Yahtzee.java      MrG 2011.0921
  2. import java.util.Random;
  3. public class Yahtzee
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         System.out.print("roll = ");
  8.         Random die = new Random();
  9.         int roll = die.nextInt(6)+1;
  10.         System.out.print(roll + " ");
  11.         roll = die.nextInt(6)+1;
  12.         System.out.print(roll + " ");
  13.         roll = die.nextInt(6)+1;
  14.         System.out.print(roll + " ");
  15.         roll = die.nextInt(6)+1;
  16.         System.out.print(roll + " ");
  17.         roll = die.nextInt(6)+1;
  18.         System.out.print(roll + " ");
  19.         System.out.println();
  20.     }
  21. }
');