Advertisement
MrsMcLead

firstActivity

Mar 24th, 2015
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. public class Class{
  2.  
  3. public static void main(String[]args)
  4. {
  5.   System.out.print("Hello, World!");
  6.   System.out.println("     Hello Again!");
  7.  
  8.   //escape characters
  9.   System.out.println("Hello, \tWorld!");
  10.   System.out.println("Hello, \nWorld!");
  11.   System.out.println("Hello, \\World!");
  12.   System.out.println("Hello, \"World!");
  13. }
  14.  
  15.  
  16.  
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement