If else for int : 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# / C Sharp » Language Basics » IfScreenshots 
If else for int
If else for int

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: [email protected]
 * Create Date: June 27, 2003
 * Last Modified Date:
 */
using System;

namespace Client.Chapter_4___Program_Control
{
  public class ifelse
  {
    static void Main(string[] args)
    {
      int a = 5, b = 5, c = 10;

      if (a == b)
        Console.WriteLine(a);

      if ((a > c|| (a == b))
        Console.WriteLine(b);

      if ((a >= c&& (b <= c))
        Console.WriteLine(c);
    }
  }
}

           
       
Related examples in the same category
1.Determine if a value is positive or negativeDetermine if a value is positive or negative
2.Determine if a value is positive, negative, or zeroDetermine if a value is positive, negative, or zero
3.Demonstrate the ifDemonstrate the if
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
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.