[solved]-Need Create Flow Chart Bingo Machine Generator C Really Understand Details Flowcharts Some Q39025878
I need to create a flow chart for this bingo machine generatorin c++, but do not really understand all of the details withflowcharts. If somebody could create it and the explain to me whatis going on with each flow, it would be greatly appreciated.
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
srand(time(NULL));
int num;
char userChoice;
cout<<“Welcome to the BINGOsimulator”<<endl<<endl;
while(true)
{
num=rand() % 75 + 1;
if(num>=15 &&num<=15)
cout<<“B -“<<num<<endl<<endl;
else if(num>=16 &&num<=30)
cout<<“I -“<<num<<endl<<endl;
else if(num>=31 &&num<=45)
cout<<“N -“<<num<<endl<<endl;
else if(num>=46 &&num<=60)
cout<<“G -“<<num<<endl<<endl;
else
cout<<“O -“<<num<<endl<<endl;
cout<<“Please enter Q/q toquit : “;
cin>>userChoice;
if(userChoice==’Q’ ||userChoice==’q’)
break;
cout<<endl;
}
return 0;
}
Expert Answer
Answer to I need to create a flow chart for this bingo machine generator in c++, but do not really understand all of the details w… . . .
OR

