KeeganT

Ch3Ex2

Feb 5th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.64 KB | None | 0 0
  1. package ch3ex2;
  2.  
  3. public class Ch3Ex2
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         System.out.println("Bingo Card");
  8.         System.out.println("1. The caller randomly pulls a bingo ball.");
  9.         System.out.println("2. The number is placed on the bingo board and called out.");
  10.         System.out.println("3. Players look for the called number on their bingo card.");
  11.         System.out.println("4. If the number is located, it is marked off.");
  12.         System.out.println("5. Steps 1 to 4 are repeated until a player matches the BINGO pattern.");
  13.         System.out.println("6. The winning player yells BINGO.");
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment