执行下列语句后输出的结果是
String s = "COMPUTER";
System.out.println(s.substring(3,6));
String s = "COMPUTER";
System.out.println(s.substring(3,6));
举一反三
- 顺序执行下面2个语句,输出的结果是 。 String s="hello!"; System.out.println(s.length());
- 已知如下定义:String s = "abc123456"; 执行语句:s.substring(s,3)的结果是:()。 A: abc B: 123 C: 123456 D: abc123456
- 请说出下列代码的执行结果 : String s = "abcd"; String s1 = new String(s); if (s = = s1) System.out.println("the same"); if (s.equals(s1)) System.out.println("equals");
- 以下程序的输出结果是 String s1="1",s2="2"; String s=s1+s2; System.out.println(s);
- 以下程序代码的输出结果是( ) String s=new String("abcdef"),t=new String("123"); System. out. println((concat(s,t)). length()); A: 9 B: 10 C: 6 D: 出错