πŸ”– Background Information

The US / Canadian version of Bingo is a game where players mark numbers on cards as they are called out by a caller. Each player has a card with a 5 x 5 grid. The columns are labeled B-I-N-G-O from left to right. The center square is usually marked as a β€œfree space”. A caller randomly draws numbered balls from 1 - 75 and announces each number to the crowd. Players then mark the corresponding numbers on their cards. You can win by marking off a complete horizontal, vertical, or diagonal line, or by covering all numbers on the card (known as a full house). When a player completes a winning pattern, they shout β€œBingo” to alert the caller. The caller then verifies the win.

In 75-ball Bingo, the numbers are:

LetterNumber Range
B1 - 15
I16 - 30
N31 - 45
G46 - 60
O61 - 75

Some of the valid numbers that the caller might announce are β€œB7”, β€œG46”, or β€œO74”.

🎯 Problem Statement

Write a program that generates random numbers for 75-ball Bingo.

βœ… Acceptance Criteria

  • When I start the program, I should see a welcome message.
  • The program should ask the user if they want to generate a number.
    • If the user responds β€œyes”, the program should print out a valid number and then prompt the user again
    • If the user responds β€œno”, the program should print out an exit message and then gracefully close

πŸ“‹ Dev Notes

  • You do NOT need to worry about removing duplicate numbers at the moment.

πŸ–₯️ Example Output

When I start the program, I expect to see an output like the following:

Welcome to the Bingo Number Generator!
 
Would you like to generate a number?
1. Yes
2. No
 
1
 
Your number is B2!
 
Would you like to generate a number?
1. Yes
2. No
 
1
 
Your number is G47!
 
Would you like to generate a number?
1. Yes
2. No
 
2
 
Goodbye!

πŸ“˜ Works Cited

N/A