Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.java.tutorial;
- public class Main {
- public static void main(String[] args) {
- // מקבץ של סמלים, אותיות, מספרים
- String text = "Hello world";
- String text2 = "1";
- String text3 = "!";
- // newString = Hello world1!
- String newString = text + text2 + text3;
- // newString2 = Hello world 1 !
- String newString2 = text + " " + text2 + " " + text3;
- System.out.println(newString);
- System.out.println(newString2);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement