Using the conditional AND and OR - CSharp Language Basics

CSharp examples for Language Basics:Operator

Description

Using the conditional AND and OR

Demo Code

class andclass// w w  w  . j ava  2s  .  c o  m
{
   static void Main()
   {
      int  day = 1;
      char sex = 'f';
      System.Console.WriteLine("Starting tests... (day:{0}, sex:{1})", day, sex );
      if ( day >= 1 && day <=7 )      //day from 1 to 7?
      {
         System.Console.WriteLine("Day is from 1 to 7");
      }
      if (sex == 'm' || sex == 'f' )  // Male or female?
      {
         System.Console.WriteLine("Sex is male or female.");
      }
      System.Console.WriteLine("Done with the checks.");
   }
}

Result


Related Tutorials