Java If
In Java, the if
statement is a fundamental control structure that allows you to conditionally execute a block of code based on a Boolean expression. The syntax of the if
statement is as follows:
if (condition) {
// Code to execute if the condition is true
}
Here’s a breakdown of how the if
statement works:
condition
: This is a Boolean expression, which is an expression that evaluates to eithertrue
orfalse
. If the condition istrue
, the code inside the curly braces{}
will be executed. If the condition isfalse
, the code inside the braces will be skipped.{}
: These curly braces define a block of code. The code inside these braces is executed if the condition istrue
.
Here’s a simple example of using an if
statement in Java:
int number = 10;
if (number > 5) {
System.out.println("The number is greater than 5.");
}
In this example, the if
statement checks whether the variable number
is greater than 5. If the condition is true
, it prints the message inside the if
block.
if-else Statement:
You can extend the if
statement with an else
block to provide an alternative action to be taken when the condition is false
. Here’s the syntax for an if-else
statement:
if (condition) {
// Code to execute if the condition is true
} else {
// Code to execute if the condition is false
}
Here’s an example:
int number = 3;
if (number > 5) {
System.out.println("The number is greater than 5.");
} else {
System.out.println("The number is not greater than 5.");
}
In this case, because number
is not greater than 5, the code inside the else
block is executed.
Nested if Statements:
You can also nest if
statements inside each other to create more complex conditional logic. Here’s an example of nested if
statements:
int x = 10;
int y = 20;
if (x > 5) {
if (y > 15) {
System.out.println("Both x and y are greater than 5 and 15, respectively.");
} else {
System.out.println("x is greater than 5, but y is not greater than 15.");
}
} else {
System.out.println("x is not greater than 5.");
}
In this example, the code checks two conditions: whether x
is greater than 5 and whether y
is greater than 15.
The if
statement is a fundamental building block for controlling the flow of your Java programs, allowing you to execute code based on specific conditions. It’s essential to understand how to use if
statements effectively when writing Java code.
Demo Day 1 Video:
Conclusion:
Unogeeks is the No.1 Training Institute for Java Training. Anyone Disagree? Please drop in a comment
You can check out our other latest blogs on Java Training here – Java Blogs
You can check out our Best in Class Java Training details here – Java Training
Follow & Connect with us:
———————————-
For Training inquiries:
Call/Whatsapp: +91 73960 33555
Mail us at: info@unogeeks.com
Our Website ➜ https://unogeeks.com
Follow us:
Instagram: https://www.instagram.com/unogeeks
Facebook: https://www.facebook.com/UnogeeksSoftwareTrainingInstitute
Twitter: https://twitter.com/unogeeks