class P002_EscapeSequence{ public static void main(String args[]) { System.out.println("One\nTwo\rThree\tFour\bFive\fSix"); }}
Output:
OneTwoThree FourFiveSix
Lesson#1
Like most other programming language tutorials I will start with writing a Java program that prints “Hello World” on the screen. Here it is:
class P001_HelloWorld{ public static void main(String args[]) {…