Guest User

Untitled

a guest
Jan 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public class ConcatWithPlus {
  2. public static void main(String[] s) {
  3. String www = "www.";
  4. String company = "nyhetsbolaget.";
  5. String country = "se";
  6.  
  7. System.out.println(www+company+country);
  8.  
  9. public class ConcatWithConcat {
  10. public static void main(String[] s) {
  11. String www = "www.";
  12. String company = "nyhetsbolaget.";
  13. String country = "se";
  14.  
  15. System.out.println(www.concat(company).concat(country));
  16. }
  17. }
Add Comment
Please, Sign In to add comment