Ok I need some help I am doing a program from Learn C# in one day. Well of course it is taking longer than one day. LOL Can someone please look this over and let me know where the error is I would really appreciate it
C#:
namespace Chapter_6_A
{
class Program
{
int userAge;
Console.Write("Please enter your age: ");
userAge = Convert.ToInt32(Console.ReadLine());
if (userAge< 0 || userAge> 100);
{
Console.WriteLine("Invalid Age");
Console.WriteLine("Age must be between 0 and 100);
}
else if (userAge < 18)
Console.WriteLine("Sorry you are underage");
else if (userAge< 21)
Console.WriteLine("You need Parental consent");
else
{
Console.WriteLine("Congratulations !");
Console.WriteLine("You may sign up for the event!);)
}
}
Last edited by a moderator: