When I type the id of the artist and the other data, then I will type the id of the repairer, I need to type the id of the repairer, if it is the same as the artist, he should not accept it and ask for another id, one part, but it does not ask for another id and goes straight to the name.
Console.WriteLine("Digite o ID do artista:");
int idArtista = int.Parse(Console.ReadLine());
Console.WriteLine("Digite o nome do artista:");
string nomeArtista = Console.ReadLine();
Console.WriteLine("Digite o sobrenome do artista:");
string sobrenomeArtista = Console.ReadLine();
Console.WriteLine("Digite o ID do reparador:");
int idReparador = int.Parse(Console.ReadLine());
bool condição = true;
if (idArtista == idReparador)
{
Console.WriteLine("Id existente.");
}
if (!condição)
{
Console.WriteLine("Digite o ID do reparador:");
}
Console.WriteLine("Digite o nome do reparador:");
string nomeReparador = Console.ReadLine();
Console.WriteLine("Digite o sobrenome do reparador:");
string sobrenomeReparador = Console.ReadLine();