Conditional Statements and Loops
If-Else Statement
if (boolean expression){ // Body } else { // Do this }public class IfElse { public static void main(String[] args) { int salary = 25400; if (salary > 10000) { salary = salary + 2000; } else { salary = salary + 1000; } System.out.println(salary); } }
Multiple If-Else Statement
Loops
While Loop
Do-While Loop