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

Java经典编程题50道之四十六

时间:2017-06-10 22:41:08      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:字符串   四十六   bsp   hello   static   编程   public   字符   sys   

编程实现两个字符串的连接。

public class Example46 {
    public static void main(String[] args) {
        addString("hello"," world!");
    }
    public static void addString(String s1,String s2){
        String s3=s1+s2;
        System.out.println("字符串"+s1+" 和字符串"+s2+"连接后为:"+s3);
    }
}

Java经典编程题50道之四十六

标签:字符串   四十六   bsp   hello   static   编程   public   字符   sys   

原文地址:http://www.cnblogs.com/qubo520/p/6980040.html

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