*ThE* *K!!nG*
*ThE* *K!!nG*
CC#
Created by *ThE* *K!!nG* on 3/11/2025 in #help
✅ Bug
Hello guys, i'm a C# beginner and i found a bug in my code, however i don't know how to fix it, it may be easy for the experienced ones but i'm struggling, i tried using chat gpt but he didn't help me at all this is my code:
List<string> visitors = Console.ReadLine().Split(' ').ToList();

while(true)
{
string command = Console.ReadLine();
if (command == "END")
{
break;
}
string[] data = command.Split(" ");

if (data[0] == "Add" && data[1] == "visitor")
{
string name = Console.ReadLine();
visitors.Add(name);
}
else if (data[0] == "Add" && data[1] == "visitor" && data[2] == "on" && data[3] == "position")
{
string name = Console.ReadLine();
int position = int.Parse(Console.ReadLine());
visitors.Insert(position, name);
}
else if (data[0] == "Remove" && data[1] == "visitor" && data[2] == "on" && data[3] == "position")
{
int position = int.Parse(Console.ReadLine());
visitors.RemoveAt(position);
}
else if (data[0] == "Remove" && data[1] == "last" && data[2] == "visitor")
{
visitors.RemoveAt(visitors.Count - 1);
}
else if (data[0] == "Remove" && data[1] == "first" && data[2] == "visitor")
{
visitors.RemoveAt(0);
}

}
Console.WriteLine(string.Join(" ", visitors));
List<string> visitors = Console.ReadLine().Split(' ').ToList();

while(true)
{
string command = Console.ReadLine();
if (command == "END")
{
break;
}
string[] data = command.Split(" ");

if (data[0] == "Add" && data[1] == "visitor")
{
string name = Console.ReadLine();
visitors.Add(name);
}
else if (data[0] == "Add" && data[1] == "visitor" && data[2] == "on" && data[3] == "position")
{
string name = Console.ReadLine();
int position = int.Parse(Console.ReadLine());
visitors.Insert(position, name);
}
else if (data[0] == "Remove" && data[1] == "visitor" && data[2] == "on" && data[3] == "position")
{
int position = int.Parse(Console.ReadLine());
visitors.RemoveAt(position);
}
else if (data[0] == "Remove" && data[1] == "last" && data[2] == "visitor")
{
visitors.RemoveAt(visitors.Count - 1);
}
else if (data[0] == "Remove" && data[1] == "first" && data[2] == "visitor")
{
visitors.RemoveAt(0);
}

}
Console.WriteLine(string.Join(" ", visitors));
Basically the bug is that whenever i write "Add visitor on position" it goes to the first condition because it's got "Add visitor" i tried switching the places but it just throws an error, i would appreciate some help
80 replies