Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 7, 2022 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/8132dc17f2118c83347311ce9aa2c470 to your computer and use it in GitHub Desktop.
Save parzibyte/8132dc17f2118c83347311ce9aa2c470 to your computer and use it in GitHub Desktop.
Console.WriteLine("Escribe un número: ");
long numero = Convert.ToInt64(Console.ReadLine());
long sobrante = numero % 2;
if (sobrante == 0)
{
Console.WriteLine("El número es par");
}
else
{
Console.WriteLine("El número es impar");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment