Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Dart Programming – If Else Statement (if , if..else, Nested if, if-else-if)

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Decision-making statements are those statements which allow the programmers to decide which statement should run in different conditions. There are four ways to achieve this: 

if Statement:

This type of statements simply checks the condition and if it is true the statements within it is executed but if it in is not then the statements are simply ignored in the code.

Syntax: 
if ( condition ){
  // body of if
}

 

Example: 
 

Dart




void main()
{
    int gfg = 10;
  
    // Condition is true
    if (gfg > 3) { 
      // This will be printed
        print("Condition is true"); 
    }
}


Output: 

Condition is true

 if…else Statement:

This type of statement simply checks the condition and if it is true, the statements within is executed but if not then else statements are executed.
 

Syntax: 
if ( condition ){
  // body of if
}
else {
  // body of else
}

 

Example: 
 

Dart




void main()
{
    int gfg = 10;
  
    // Condition is false
    if (gfg > 30) { 
      // This will not be printed
        print("Condition is true"); 
    }
    else {
      // This will be printed
        print("Condition id false"); 
    }
}


Output: 

Condition is false

else…if Ladder:

This type of statement simply checks the condition and if it is true the statements within it is executed but if it in is not then other if conditions are checked, if they are true then they are executed and if not then the other if conditions are checked. This process is continued until the ladder is completed.

Syntax: 
if ( condition1 ){
  // body of if
}
else if ( condition2 ){
  // body of if
}
.
.
.
else {
  // statement
}

Example: 
 

Dart




void main()
{
    int gfg = 10;
    if (gfg < 9) {
        print("Condition 1 is true");
        gfg++;
    }
    else if (gfg < 10) {
        print("Condition 2 is true");
    }
    else if (gfg >= 10) {
        print("Condition 3 is true");
    }
    else if (++gfg > 11) {
        print("Condition 4 is true");
    }
    else {
        print("All the conditions are false");
    }
}


Output: 

Condition 3 is true

Nested if Statement:

This type of statements checks the condition and if it is true then the if statement inside it checks its condition and if it is true then the statements are executed otherwise else statement is executed.

Syntax: 
if ( condition1 ){
  if ( condition2 ){
     // Body of if
  }
  else {
    // Body of else
  }
}

 

Example: 
 

Dart




void main()
{
    int gfg = 10;
    if (gfg > 9) {
        gfg++;
        if (gfg < 10) {
            print("Condition 2 is true");
        }
        else {
            print("All the conditions are false");
        }
    }
}


Output: 

All the conditions are false

 


My Personal Notes arrow_drop_up
Last Updated : 30 Jun, 2020
Like Article
Save Article
Similar Reads