Advertisement
Guest User

Lesson 1 java code Marck

a guest
Apr 26th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. public class Tester{
  2. public static void main(String args[])
  3. {
  4. System.out.println("Hello World");
  5. System.out.println("Hello Again");
  6. }
  7.  
  8. }
  9.  
  10.  
  11. //Author: Charles Cook
  12. //Date Created: Mar 22, 2005
  13. public class Tester{
  14. public static void main(String[] args)
  15. {
  16. System.out.println("From: Bill Smith");
  17. System.out.println("Address: Dell Computer, Bldg 13");
  18. System.out.println("Date: April 12, 2005");
  19. System.out.println(" ");
  20. System.out.println("To: Jack Jones");
  21. System.out.println(" ");
  22. System.out.println("Help! i'm trapped inside a computer");
  23. }
  24.  
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement