illustrates the use of a nested if statement : If « Language Basics « C# / C Sharp






illustrates the use of a nested if statement

illustrates the use of a nested if statement
/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example4_3.cs illustrates the use of
  a nested if statement
*/

public class Example4_3
{

  public static void Main()
  {

    int reactorTemp = 1500;
    string emergencyValve = " ";

    if (reactorTemp < 1000)
    {
      System.Console.WriteLine("Reactor temperature normal");
    }
    else
    {
      System.Console.WriteLine("Reactor temperature too high!");
      if (emergencyValve == "closed")
      {
        System.Console.WriteLine("Reactor meltdown in progress!");
      }
    }

  }

}

           
       








Related examples in the same category

1.If else for intIf else for int
2.Determine if a value is positive or negativeDetermine if a value is positive or negative
3.Determine if a value is positive, negative, or zeroDetermine if a value is positive, negative, or zero
4.Demonstrate the ifDemonstrate the if
5.Demonstrate a block of codeDemonstrate a block of code
6.If BranchingIf Branching
7.If ElseIf Else
8.Another if elseAnother if else
9.Illustrates the use of the if statementIllustrates the use of the if statement
10.Illustrates the use of an if statement that executes a blockIllustrates the use of an if statement that executes a block
11.Logical operators with an if statementLogical operators with an if statement