Question: Please what could be the bug in my code that makes it not to get the expected result of Bob, Tim, Sue, Bob, Tim, Sue,

Please what could be the bug in my code that makes it not to get the expected result of Bob, Tim, Sue, Bob, Tim, Sue, Tim, Sue, Tim, Tim. Rather, it results in al turns of Sue first, and then all turns of Bob and then Tim. public class TakingTurnsQueue {
}
????????????????????
public void GetNextPerson(){
if (_people.IsEmpty())
Console.WriteLine("No one in the queue.");
else {
Person person =_people.Dequeue();
if (person.Turns >1){
person.Turns -=1;
}
_people.Enqueue(person);
Console.WriteLine(
person.Name);
}
}
public override string ToString(){
return _people.ToString();
}
}
 Please what could be the bug in my code that makes

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!