网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

若字符串 s = 'hello',则语句 s.ljust(8, '.') 和 s.rjust(8) 的输出结果为____________。

A.'hello...' ' hello'

B.'...hello' ' hello'

C.'hello...' 'hello '

D.'hello...' 'hello'


参考答案和解析
“<
更多 “若字符串 s = 'hello',则语句 s.ljust(8, '.') 和 s.rjust(8) 的输出结果为____________。A.'hello...' ' hello'B.'...hello' ' hello'C.'hello...' 'hello 'D.'hello...' 'hello'” 相关考题
考题 在下列程序代码中,主程序调用add(x)时,若参数传递采用引用方式,则其输出结果为(34),若参数传递采用传值方式,则输出结果为(35)。(61)A.2B.4C.6D.8

考题 (8)执行下列语句后,输出结果是。 s$="ABCDEFG" Print InStr(s$,"efg") Print Lcase$(s$)

考题 有以下程序 #includestdio.h void fun(char*c) {while(*c) {if(*c=a*c=z)*c=*c=(’a’-’A’) c++; } } main( ) {char s[81]; gets(s);fun(;)puts(s); 当执行程序时从键盘输入Hello Beijing回车,则程序的输出结果是( )。A.hello beijingB.Hello BeijingC.HELLO BEIJINGD.hELLO Beijing

考题 若有以下定义和语句: char s [10]="abcd!",*s2="\nl23\\"; Drintf("%d%d\n",strlen(sl),strlen(s2)); 则输出结果是( )。A.5 5B.10 5C.10 7D.5 8

考题 以下能正确进行字符串赋值操作的是______。A.char *sss;*sss="hello!";B.char *sss;sss="hello!";C.char sss[8];sss="hello!";D.char sss[8];*sss="hello!";

考题 有如下的程序: int f(char*s) { char *p=s; while(*p!='\0') p++; return(p-s); }如果在主程序中用下述语句调用上述函数,则输出结果为______。 printf("%d\n",f("best one!"));A.3B.6C.8D.9

考题 若有以下定义和语句char s1[10]=”aBcd!”,*s2=”\n123\\”printF(“%d%d\n”,strlen(sl),strlen(s2));则输出结果是A.5 5B.10 5C.10 7D.5 8

考题 有以下程序#includestdio.hvoid fun(char*c){while(*C){if(*c=‘a’&&*c=‘z’) *c=*c一(‘a’一‘A’);C++;}}main(){char s[81];gets(s);fun(s);puts(s);}当执行程序时从键盘上输入Hello Beijing回车,则程序的输出结果是A.hello beijingB.Hello BeijingC.HELLO BEIJINGD.hELLO Beijing

考题 设有说明语句如下: static char str[]="Beijing"; 若执行下列输出语句: printf("%d\n",strlen(strcpy(str,"China")));则输出结果为( )。A.5B.7C.12D.14

考题 有以下程序#includevoid fun(char *c){ while(*c){ if(*c=a*c=z) *c=*c-(a-A);c++;}}main(){ char s[81];gets(s); fun(s); puts(s):}当执行程序时从键盘上输入Hello Beijing回车,则程序的输出结果是A.hello beijingB.Hello BeijingC.HELLO BEIJINGD.hELLO Beijing

考题 以下程序中函数sCmp的功能是返回形参指针sl和s2所指字符串中较小字符串的首地址。若运行时依次输入:abCd、abba和abC三个字符串,则输出结果是( )。A.abCdB.abbaC.abCD.abCa

考题 ( 31 )若有以下定义和语句char s1[10]= " abcd! " ,*s2= " \n123\\ ";printf ( " %d %d\n ", strlen ( s1 ) ,strlen ( s2 ) ) ;则输出结果是A ) 5 5B ) 10 5C ) 10 7D ) 5 8

考题 语句 System.out.println(4+8+"Hello,world!"); 的输出结果是12Hello,world!。() 此题为判断题(对,错)。

考题 语句 System.out.println("Hello,world!"+4+8);的输出结果是Hello,world!48。() 此题为判断题(对,错)。

考题 假定s被定义为指针类型char *的变量,初始指向的字符串为"Hello world!",若要使变量p指向s所指向的字符串,则p应定义为()。Achar *p=s;Bchar *p=s;Cchar *p;p=*s;Dchar *p; p=s;

考题 字符串„hel‟lo‟输出结果为()A、’hello’B、’hel lo’C、hel’loD、hel/’lo

考题 在PHP中,语句“echo’hello’+128”的输出结果是()。A、helloB、hello128C、0128D、128

考题 设String对象s="H",运行语句System.out.println(s.concat("ello!"));后String对象s的内容为"Hello!",所以语句输出为"Hello!"。

考题 创建字符串s:Strings=newString(“hello”);以下()语句将改变s。A、s.append(“aaa”)B、s.concat(s)C、s.substring(3)D、以上语句都不会

考题 欲为字符串S1输入”Hello World!”,其语句是()。

考题 语句Print Format("HELLO","")的输出结果是()A、HELLOB、helloC、HeD、he

考题 若有定义和语句: char s[10]:s=""abcd"";printf(""%s/n"",s); 则结果是(以下u代表空格)()A、输出abcdB、输出aC、输出abcduuuuuD、编译不通过

考题 语句PrintFormat(“Hello World”,“”)的输出结果是()。A、hello WORLDB、hello worldC、HELLO WORLDD、HELLO world

考题 单选题假定s被定义为指针类型char *的变量,初始指向的字符串为"Hello world!",若要使变量p指向s所指向的字符串,则p应定义为()。A char *p=s;B char *p=s;C char *p;p=*s;D char *p; p=s;

考题 单选题若有定义和语句: char s[10]:s=""abcd"";printf(""%s/n"",s); 则结果是(以下u代表空格)()A 输出abcdB 输出aC 输出abcduuuuuD 编译不通过

考题 判断题设String对象s="H",运行语句System.out.println(s.concat("ello!"));后String对象s的内容为"Hello!",所以语句输出为"Hello!"。A 对B 错

考题 单选题创建字符串s:Strings=newString(“hello”);以下()语句将改变s。A s.append(“aaa”)B s.concat(s)C s.substring(3)D 以上语句都不会

考题 单选题字符串„hel‟lo‟输出结果为()A ’hello’B ’hel lo’C hel’loD hel/’lo