Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class MyFirstClass {
  2. public static void main(String[] args) {
  3. System.out.println("string");
  4. System.out.println("string " + "string");
  5. System.out.println("string" + 5);
  6. System.out.print("string1");
  7. System.out.print("string2");
  8. System.out.print("string3");
  9. System.out.println("");
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement