\t
                        The following statement will result in this output : The     big     bad     brown   bear!
                        System.out.println("The\tbig\tbad\tbrown\tbear!\t");
                        \"
                        The following statement will result in this output : "This string is quoted!"
                        System.out.println("\"This string is quoted!\"");
                        \n
                        To output FOUR blank lines you will use the following statement :
                        System.out.println("\n\n\n");
                        \n
                        To break apart an output string you will use the following statement :
                        System.out.println("123\n456");
                      
                   |