If Example Java Program
Definition
IF conditional statement is a feature of this programming language which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false. Apart from the case of branch predication, this is always achieved by selectively altering the control flow based on some condition.Syntax
if statements in Java are similar to those in C and use the same syntax: if (expression) { doSomething(); }
Syntax Example
for example, if (i == 3) { doSomething(); }
Syntax Explanation
consider above example syntax,
- which means the variable i contains a number that is equal to 3, the statements following the doSomething() block will be executed.
- Otherwise doSomething() block will not be executed.
If Example Program
import java.util.Scanner; class IfExample{ public static void main(String[] args){ Scanner in=new Scanner(System.in); System.out.println("Enter the number: "); int num=in.nextInt(); if(num==5){ System.out.println(" Condition that the given number "+num+" is egual to 5 is : True "); } } }
Sample Output
Output is: Enter the number: 5 Condition that the given number 5 is egual to 5 is : True
Note
General Programming Note for If Else,
- The if?else construct (sometimes called if?then?else) is common across many programming languages.
- Although the syntax varies quite a bit from language to language, the basic functionality is the same.
Read More Articles
- Multiple Inheritance Using Interface Example Java Program
- Single Inheritance Example Java Program
- Multilevel Inheritance Example Java Program
- Hierarchical Inheritance Example Java Program
- Find all Substrings of a given string Example Java Program
- Create Matrix Example Java Program
- Sum Of Three Numbers Example Java Program
- Twin Prime Example Java Program
- Heap Sort Example Java Program
- Compile Time Polymorphism Example Java Program