• 2022-06-01
    有这样的字符串对象的定义StringBuffer str = "hello world"; str.reverse();str执行此方法后str字符串的值是"world hello"
  • 内容

    • 0

      下面哪个选项不能将"hello"字符串存入字符数组str中( )。 A: char str[]="hello" ; B: char str[30]; strcpy(str, "hello"); C: char str[30];str="hello"; D: char str[30],*ps=str; strcpy(ps,"hello");

    • 1

      有以下python代码:str = 'Hello World!'print str * 2 它的结果是输出字符串两次

    • 2

      有以下python代码:str = 'Hello World!'print str + "TEST" 它的结果是输出连接的字符串

    • 3

      以下涉及字符串数组、字符指针的程序段,不会产生编译错误的是______。 A: char* str, name[10]; str = "Hello World"; B: char* str, name[10]; name = "Hello World"; C: char str1[10] = "prog.c", str2[10]; str2 = str1; D: char head_line[]; head_line = "=============";

    • 4

      下列关于字符串使用正确的是() A: char str[10]; str="Hello"; B: char *str; strcpy(str,"Hello"); C: char *str1,str[10]="Hello"; strcpy(str,str1); D: char *str; str="Hello";