Skip to main content

Conditional Statements: Switch Statement

Java | Switch Statement: Switch statement is the one of the conditional statement. It provide the multiple options to choose the one of them by checking the condition.

Syntax:                           switch ( condition )
                                       {
                                                 case 1: 
                                                        // statements...
                                                        break;
                                                 case 2: 
                                                       // statements...
                                                        break;
                                                 default:
                                                       // statements...
                                        }

Here is the Code:

  1. import java.io.*;

  2. class Main {
  3. public static void main (String[] args) {
  4.     int i = 3;
  5.     switch(i)
  6.     {
  7.         case 1:
  8.             System.out.println("One");
  9.             break;
  10.         case 2:
  11.             System.out.println("Two");
  12.             break;
  13.         default:
  14.             System.out.println("Out of Range");
  15.     }
  16. }
  17. }
 
Output:
Out of Range                                                    

Here is the Video: