Please do a flowchart which will be on the computer not on paperso i can read it and be able to take screenshot for this c++ codethis code for MasterMind
//System Libraries
#include <iostream> //Input/Output Library
#include <cstdlib>
#include <ctime>
using namespace std;
//User Libraries
//Global Constants, no Global Variables are allowed
//Math/Physics/Conversions/Higher Dimensions – i.e. PI, e,etc…
//Function Prototypes
//main
int main(int argc, char** argv) {
//Set the random number seed
srand(time(0));
int randomint = (rand()%5)+1;
//Declare Variables
char colors[4];// the 4 colors of MasterMind
char ex;
//Random for loop
for(int i=0;i<4;i++){
randomint = (rand()%5)+1;
switch(randomint){
case 1:
colors[i] = ‘R’;
break;
case 2:
colors[i] = ‘B’;
break;
case 3:
colors[i] = ‘Y’;
break;
case 4:
colors[i] = ‘P’;
break;
case 5:
colors[i] = ‘G’;
break;
}
}
//Initialize or input i.e. set variable values
char usercolors[4];
cout << “Let
PayPal Gateway not configured
PayPal Gateway not configured