Thursday, 5 December 2013

Unknown

Nested Switch

/*
Statements Example
This example shows how to use nested switch statements in a
java program.
*/

public class NestedSwitchExample {

    public static void main(String[] args) {
        /*
         * Like any other Java statements, switch statements
         * can also be nested in each other as given in
         * below example.
         */
        int i = 0;
        int j = 1;
        switch (i) {
            case 0:
                switch (j) {
                    case 0:
                        System.out.println("i is 0, j is 0");
                        break;
                    case 1:
                        System.out.println("i is 0, j is 1");
                        break;

                    default:
                        System.out.println("nested default case ! ");
                }
                break;
            default:
                System.out.println("No matching case found!!");
        }
    }
}
/*
Output would be,
i is 0, j is 1
*/

Unknown

About Blog No Baap -

Since 2016 BlogNoBaap has been bringing you the very best in all types of web resources. Posted daily, and delivered straight to your inbox each morning.

Subscribe to this Blog via Email :