Skip to content

Instantly share code, notes, and snippets.

@mgravell
Created September 13, 2021 06:05
Show Gist options
  • Save mgravell/97c2ffb2439bb5970c1032bef81384a0 to your computer and use it in GitHub Desktop.
Save mgravell/97c2ffb2439bb5970c1032bef81384a0 to your computer and use it in GitHub Desktop.
using System;
Console.Write("Please give your age: ");
int input = Convert.ToInt32(Console.ReadLine());
if (input < 18)
{
Console.WriteLine("Not eligible for voting.");
}
else
{
Console.WriteLine("Please proceed to vote!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment