16 lines
397 B
Java
16 lines
397 B
Java
// strings/Concatenation.java
|
|
// (c)2021 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://OnJava8.com for more book information.
|
|
|
|
public class Concatenation {
|
|
public static void main(String[] args) {
|
|
String mango = "mango";
|
|
String s = "abc" + mango + "def" + 47;
|
|
System.out.println(s);
|
|
}
|
|
}
|
|
/* Output:
|
|
abcmangodef47
|
|
*/
|