-1
int loop = 0;
while( loop >= 0 )
{
int aa;
int an;
Console.WriteLine( " Qual o Ano Atual? : " );
aa = Convert.ToInt16( Console.ReadLine() );
Console.WriteLine( " Qual o Ano de Nascimento? : " );
an = Convert.ToInt16( Console.ReadLine() );
int id = aa - an;
if( id >= 18 )
{
Console.WriteLine( " De Maior, sua idade é:" + " " + id );
}
else
{
Console.WriteLine( " De Menor, sua idade é:" + " " + id );
}
Console.Write( " Se não desejar continuar Press <n> para sair... " );
Console.WriteLine();
while ( Console.ReadKey().Key == ConsoleKey.N )
{
Console.ReadKey( true );
}
} loop++;
It would be interesting to make clear what the doubt is and what part of the code is your difficulty.
– David Alves
What’s the matter with you?
– RXSD
OK thank you, I will specify better next time.
– maykon