• 2021-04-14
    下面程序段的输出结果是
    public class A{
    public static void main(String args[]) {
    String str ="Hello,";
    str=str+"Guys!";
    System.out.println(str);
    }
    }