Question
Bool value, passing into a function Trying to get option 1 to set the bool value to false so the SetFoxes function will goto the
Bool value, passing into a function
Trying to get option 1 to set the bool value to false so the SetFoxes function will goto the else statement and run the LoadFoxes function
Option 2 should set it to true and run the if statement:
using namespace std;
int action = -1; while(action!=0){ cout< reenter: //if we select an invalid menu item, we return here cout<<"Action:"; //output to screen cin>> action; //user input cout< if(action == 2) { } void SetFoxes(int foxesX[], int foxesY[], bool RandPositions, int numFoxes) { if(RandPositions == true) { for(int i=0; i
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started