Advertisement
erfanul007

Untitled

Jan 19th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. //java program only println
  2. package javaapplication1; //project name
  3.  
  4. public class JavaApplication1 { //class name
  5.  
  6. public static void main(String[] args) {
  7. //practice program 1
  8. System.out.println("This program prints the first lines\nof the song \"slots\".");
  9. System.out.println();
  10. System.out.println("\"She lives in a trailer\"");
  11. System.out.println("\"On the outskirts 'a Reno\"");
  12. System.out.println("\"She plays quarter slots in the locals casino.\"");
  13. System.out.println();
  14. System.out.println();
  15. System.out.println();
  16. //practice program 2
  17. System.out.println("A \"quoted\" String is\n'much' better if you learn\nthe rules of \"escape sequrnces.\"");
  18. System.out.println();
  19. System.out.println("Also, \"\" represents an empty string.");
  20. System.out.println("Don't forget to use \\\" instead of \" !");
  21. System.out.println("'' is not the same as \"");
  22.  
  23. }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement