码迷,mamicode.com
首页 > 编程语言 > 详细

Java 中的"+"号(加法和连接)

时间:2019-08-24 14:52:48      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:primary   print   badge   ima   void   int   ogg   连接   code   

Java 中的"+"号(加法和连接)

public class Test {
    public static void main(String[] args) {
        System.out.println(2 + 0 + 1 + 6 + "GeeksforGeeks");
        System.out.println("GeeksforGeeks" + 2 + 0 + 1 + 6);
        System.out.println(2 + 0 + 1 + 5 + "GeeksforGeeks" + 2 + 0 + 1 + 6);
        System.out.println(2 + 0 + 1 + 5 + "GeeksforGeeks" + (2 + 0 + 1 + 6));
    }
}

参考答案

9GeeksforGeeks
GeeksforGeeks2016
8GeeksforGeeks2016
8GeeksforGeeks9

Java 中的"+"号(加法和连接)

标签:primary   print   badge   ima   void   int   ogg   连接   code   

原文地址:https://www.cnblogs.com/hglibin/p/11404527.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!