Find the best solutions to your questions at Westonci.ca, the premier Q&A platform with a community of knowledgeable experts. Discover comprehensive answers to your questions from knowledgeable professionals on our user-friendly platform. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.
Sagot :
#include
using namespace std;
int main() {
// Set up 3 groups of responders
int group1Button = 0;
int group1Light = 0;
int group2Button = 0;
int group2Light = 0;
int group3Button = 0;
int group3Light = 0;
// Keep running until someone presses a button
while(group1Button == 0 && group2Button == 0 && group3Button == 0) {
// Check if group 1 presses button
if(group1Button == 1) {
// Turn on group 1 light
group1Light = 1;
// Don't turn on other lights
group2Light = 0;
group3Light = 0;
// First responder, don't wait for buttons
break;
}
// Check if group 2 presses button
if(group2Button == 1) {
// Turn on group 2 light
group2Light = 1;
// Don't turn on other lights
group1Light = 0;
group3Light = 0;
// First responder, don't wait for buttons
break;
}
// Check group 3 button
if(group3Button == 1) {
// Turn on group 3 light
group3Light = 1;
// Don't turn on other lights
group1Light = 0;
group2Light = 0;
// First responder, don't wait for buttons
break;
}
}
// Print out lights
cout << "Group 1 light: " << group1Light << endl;
cout << "Group 2 light: " << group2Light << endl;
cout << "Group 3 light: " << group3Light << endl;
return 0;
}
using namespace std;
int main() {
// Set up 3 groups of responders
int group1Button = 0;
int group1Light = 0;
int group2Button = 0;
int group2Light = 0;
int group3Button = 0;
int group3Light = 0;
// Keep running until someone presses a button
while(group1Button == 0 && group2Button == 0 && group3Button == 0) {
// Check if group 1 presses button
if(group1Button == 1) {
// Turn on group 1 light
group1Light = 1;
// Don't turn on other lights
group2Light = 0;
group3Light = 0;
// First responder, don't wait for buttons
break;
}
// Check if group 2 presses button
if(group2Button == 1) {
// Turn on group 2 light
group2Light = 1;
// Don't turn on other lights
group1Light = 0;
group3Light = 0;
// First responder, don't wait for buttons
break;
}
// Check group 3 button
if(group3Button == 1) {
// Turn on group 3 light
group3Light = 1;
// Don't turn on other lights
group1Light = 0;
group2Light = 0;
// First responder, don't wait for buttons
break;
}
}
// Print out lights
cout << "Group 1 light: " << group1Light << endl;
cout << "Group 2 light: " << group2Light << endl;
cout << "Group 3 light: " << group3Light << endl;
return 0;
}
We hope you found this helpful. Feel free to come back anytime for more accurate answers and updated information. We appreciate your visit. Our platform is always here to offer accurate and reliable answers. Return anytime. Get the answers you need at Westonci.ca. Stay informed with our latest expert advice.