This section contains 552 words (approx. 2 pages at 300 words per page) |
Bingo Program
This program prints 4 bingo card each for as many as 5 players, and then it randomly generates numbers from 1 to 75 in order to check off the correspondinonding numbers on the bingo cards. it also prints the name of the winnner and the winning card and its winning pattern. once there is no playres left, the program exits and calculates the maximum, minimum, and average numbers required to finish each games. it also counts the number of games that has been played.
#include
#include
#define ROW 5
#define COLUMN 5
#define LEVEL 15
#define MAXLEN 25
#define MAXPLA 5
#define MAXCAR 4
#define BINGO 14
#define HI 75
#define HUGE 1000
int card(int player);
main prgram, prompt the user to enter the number of players for the first game
int main(void)
{
int player = 1;
srand((unsigned) time(NULL));
printf("Enter number of players: ");
scanf("%d", &player);
while( player < 0 || player > MAXPLA)
{
printf("Please enter no more than 5 players: ");
scanf...
This section contains 552 words (approx. 2 pages at 300 words per page) |