//Program to check whether you are eligible to vote or not
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace cs2
{
class Program
{
static void Main(string[] args)
{
int x;
Console.WriteLine("Please enter your age");
x = int.Parse(Console.ReadLine());
if (x >=18)
{
Console.Write("You are eligible to vote");
Console.Read();
}
else
{
Console.Write("You are not eligible to vote");
Console.Read();
}
}
}
}
No comments:
Post a Comment
Note: only a member of this blog may post a comment.