C# - Programming Language
This course covers the basics of programming in C#. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

If Statements Cont

Lesson 15
Author : 🦒
Last Updated : November, 2017


Code

Copybool isStudent = false;
bool isSmart = false;

if (isStudent && isSmart)
{
   Console.WriteLine("You are a student");
}
else if (isStudent && !isSmart)
{
   Console.WriteLine("You are not a smart student");
}
else
{
   Console.WriteLine("You are not a student and not smart");
}

// >, <, >=, <=, !=, ==
if (1 < 3)
{
   Console.WriteLine("number comparison was true");
}