• 2021-04-14
    请了解c++中string类的用法,写出下列程序输出进行分析;//注意不是写最后的输出结果。 #include #include using namespace std; void main(){ string s1="hello"; string s2=" wuhan!"; cout< hello wuhan!  -1  3
  • hello wuhan!  -1  3

    内容

    • 0

      以下要输出“hello,world!”正确的是? A: String s=String.format("%1s%2s","hello","world");System.out.println(s); B: String s=String.format("%1$s,%2$s","hello","world");System.out.println(s); C: String s=String.format("%s,%s","hello","world");System.out.println(s); D: String s=String.format("%1s,%2s","hello","world");System.out.println(s);

    • 1

      import java.io.*;public class abc{public static void main(String args&#91; &#93;){ AB s = new AB("Hello!",“world”);System.out.println(s.toString( ));}} class AB {String s1;String s2;AB( String str1 , String str2 ){ s1 = str1; s2 = str2; }public String toString( ){ return s1+s2; }} A: Hello!world B: worldHello!

    • 2

      下面程序的输出结果为______ #include<iostream.h> void main() { cout<<"Hello\b"; }

    • 3

      有如下代码:String s1=new String('hello');String s2=new String('hello'); 则s1.equals(s2)的结果为true;s1==s2的结果为false。

    • 4

      下列代码片段执行结果是:String s=new String(”abc”); String s1=new String(s); if(s==s1){ System.out.println(”Hello”); } if(s.equals(s1)){ System.out.println(”World”); } A: Hello World B: Hello C: World D: Null