- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java If Statement
In Java, the if statement is used for decision-making based on conditions. Here's an overview:
Syntax:
if (condition) {
// Code to execute if the condition is true
}
Simple If Statement:
- Executes a block of code if the condition is true.
- Example:
int x = 10;
if (x > 5) {
System.out.println("x is greater than 5");
}
Here are some additional examples demonstrating the usage of the if statement in Java:
- Checking if a Number is Even or Odd:
int num = 7;
if (num % 2 == 0) {
System.out.println(num + " is even");
} else {
System.out.println(num + " is odd");
}
- Checking if a Year is a Leap Year:
int year = 2024;
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
System.out.println(year + " is a leap year");
} else {
System.out.println(year + " is not a leap year");
}
- Checking if a Character is a Vowel or Consonant:
char ch = 'A';
if (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u' ||
ch == 'A' || ch == 'E' || ch == 'I' || ch == 'O' || ch == 'U') {
System.out.println(ch + " is a vowel");
} else {
System.out.println(ch + " is a consonant");
}
- Checking if a Number is Positive, Negative, or Zero:
int number = -3;
if (number > 0) {
System.out.println(number + " is positive");
} else if (number < 0) {
System.out.println(number + " is negative");
} else {
System.out.println(number + " is zero");
}
These examples illustrate various scenarios where the if statement can be used to make decisions based on different conditions.
Summary
The if statement in Java is used for decision-making based on conditions. It can be used alone, or in combination with else and else if statements to create more complex logic. Understanding how to use if statements is essential for controlling the flow of execution in Java programs.