Advertisement
Guest User

Untitled

a guest
Dec 27th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // 2019/12/27(金)
  2.  
  3. public class HelloString {
  4. public static void main(String[] args) {
  5. String sentence1 = "私の年齢は";
  6. int age = 37;
  7. String sentence2 = "歳です";
  8.  
  9. System.out.println(sentence1 + age + sentence2);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement