I have to agree with an earlier post about lesson four Type Conversion I got kind of confused at the end but that`s because my math sucks lol. I get the concept of it all though within reason

I shall continue reading and yes I am actually learning
Ok so I did it this way is it wrong (obviously not that much because it worked)
Code:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int age = int.Parse(Console.ReadLine());
if (age < 16)
{
Console.WriteLine("You can`t enter");
}
else if ((age >= 16) && (age <= 18))
{
Console.WriteLine("You can come in but can`t drink");
}
else if (age >= 19)
{
Console.WriteLine("You can drink as well");
}
}
}
}
Oh and THANK YOU! I definately recommend this to anybody that wants to learn and understand C# because you have explained it very simply and this is the kind of thing I can learn from

It`s similar to how I have learnt php/html/javascript