Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Lesson1StringConcat {
  2. public static void main(String[] args) {
  3. System.out.println("It is a string");
  4. System.out.println("It is" + "the second string");
  5. System.out.println("It is a string number" + 3);
  6. System.out.print("String...");
  7. System.out.println("");
  8. }
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement