Demonstrate a block of code : If « Language Basics « C# / C Sharp






Demonstrate a block of code

Demonstrate a block of code
/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Demonstrate a block of code. 
 
using System; 
 
public class BlockDemo { 
  public static void Main() { 
    int i, j, d; 
 
    i = 5; 
    j = 10; 
 
    // the target of this if is a block 
    if(i != 0) { 
      Console.WriteLine("i does not equal zero"); 
      d = j / i; 
      Console.WriteLine("j / i is " + d); 
    } 
  } 
}

           
       








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.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