//Output3 - shows the use of escape sequences in string literals public class Output3 { public static void main(String[] args) { System.out.println("This is how I can put an new line: |\n|"); System.out.println("This is how I can put a tab: |\t|"); System.out.println("This is how I can put a backslash: |\\|"); System.out.println("This is how I can put a single quote: |\'|"); System.out.println("This is how I can put a double quote: |\"|"); } }