Demonstrate the if : If « Language Basics « C# / C Sharp






Demonstrate the if

Demonstrate the if
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Demonstrate the if.  
 
using System; 
 
public class IfDemo {  
  public static void Main() {  
    int a, b, c;  
  
    a = 2;  
    b = 3;  
  
    if(a < b) Console.WriteLine("a is less than b"); 
 
    // this won't display anything  
    if(a == b) Console.WriteLine("you won't see this");  
 
    Console.WriteLine(); 
 
    c = a - b; // c contains -1 
 
    Console.WriteLine("c contains -1"); 
    if(c >= 0) Console.WriteLine("c is non-negative"); 
    if(c < 0) Console.WriteLine("c is negative"); 
 
    Console.WriteLine(); 
 
    c = b - a; // c now contains 1 
    Console.WriteLine("c contains 1"); 
    if(c >= 0) Console.WriteLine("c is non-negative"); 
    if(c < 0) Console.WriteLine("c is negative"); 
 
  }  
}

           
       








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 a block of codeDemonstrate a block of code
5.If BranchingIf Branching
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