Illustrates the use of the if statement : If « Language Basics « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Language Basics » IfScreenshots 
Illustrates the use of the if statement
Illustrates the use of the if statement

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/
/*
  Example4_1.cs illustrates the use of the if statement
*/

public class Example4_1
{

  public static void Main()
  {

    int smallNumber = 5;
    int bigNumber = 100;

    if (bigNumber > smallNumber)
      System.Console.WriteLine(bigNumber + " is greater than " +
        smallNumber);
    else
      System.Console.WriteLine(bigNumber + " is less than " +
        smallNumber);

  }

}


           
       
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 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
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.