The following validation checks whether an entry is a positive number.
if (Q[i] < 0) {
Console.WriteLine("Digite um número positivo!");
goto Start;
}
Just like this check, if nothing was typed, the program would only return to the "Start" without displaying an error.
That is, how do I check if the entry is empty because the user did not enter anything?