0
Starting I type the artist’s id and the other data, then I will enter the repairman’s id, I need that when typing the repairman’s id, if it is equal to the artist he should not accept and ask for another id, I managed to do a 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();
Wow, very well remembered. Thank you so much for your help.
– Airton