Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 463 Bytes

File metadata and controls

28 lines (20 loc) · 463 Bytes
layout default
title if-else
parent Simple If
grand_parent Control Statement
nav_order 2

Java if-else Statement


The Java if-else statement also tests the condition. It executes the if block if condition is true otherwise else block is executed.

Syntax:

if(condition){  
   //code if condition is true  
}else{  
    //code if condition is false  
}  

Flochart