If Branching : If « Language Basics « C# / C Sharp






If Branching

If Branching
/*
Learning C# 
by Jesse Liberty

Publisher: O'Reilly 
ISBN: 0596003765
*/

 using System;

 namespace Branching
 {
    public class TestBranching
    {
       static void Main()
       {
             int valueOne = 10;
             int valueTwo = 20;
             int valueThree = 30;

             Console.WriteLine("Testing valueOne against valueTwo...");
             if ( valueOne > valueTwo )
             {
                 Console.WriteLine(
                 "ValueOne: {0} larger than ValueTwo: {1}",
                 valueOne, valueTwo);
             }

             Console.WriteLine("Testing valueThree against valueTwo...");
             if ( valueThree > valueTwo )
             {
                 Console.WriteLine(
                     "ValueThree: {0} larger than ValueTwo: {1}",
                     valueThree, valueTwo);
             }   // end if

       }         // end Main
    }            // end class
 }               // end namespace

           
       








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 ElseIf Else
7.Another if elseAnother if else
8.Illustrates the use of the if statementIllustrates the use of the if statement
9.Illustrates the use of an if statement that executes a blockIllustrates the use of an if statement that executes a block
10.illustrates the use of a nested if statementillustrates the use of a nested if statement
11.Logical operators with an if statementLogical operators with an if statement