Created
September 13, 2021 06:05
-
-
Save mgravell/97c2ffb2439bb5970c1032bef81384a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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