public class EscapeSequences { public static void main(String[] args) { // TODO Auto-generated method stub //System.out.println("He said " +'"' +"Hello world"+'"'); \\our student shows another way to print out " System.out.println ("He said \"Hello, World!\""); // \" print out " System.out.println("The file is located at c:\\myFiles\\myDoc.doc"); // \\ print out \ System.out.println("Welcome\nto\ndisney"); // \n print out a new line System.out.println("Name\tAge\tDate"); // \t print out a tab space between the words System.out.println("I like this ddddd\rNo start over"); // \r carriage return } }