(A)which
(B) how
(C) in that
(D) ×
正确答案:D
解答参考:D此题考察定语从句, 关系词在从句中充当方式状语, 用that或 in which,还可省略掉。【译文】这就是这个世界运作的方式
第1题:
A.Twop557016way1.9MHzmachines
B.Onep559032way1.65MHzmachines
C.Onep559532way1.65MHzmachines
D.Twop557016way1.65MHzmachines
第2题:
若串s=“World”,其子串的个数是()。
A.5
B.6
C.15
D.16
第3题:
2、若串s1=“hello”,s2=“ world”,那么执行 strlen(strcat(s1,s2))后的结果是()。
A.0
B.10
C.11
D.不确定
第4题:
设有定义:Strings=“World”;,下列语句错误的是( )。
A、intm=s.indexOf(‘r’);
B、charc=s.charAt(0);
C、intn=s.length();
D、Stringstr=s.append(‘2’);
第5题:
35、以下程序的运行结果是___________。 void print(char *s){ printf("%s", s); } int main(){ char *p, *q; char str[]="Hello, World\n"; q=p=str; p++; printf(q); printf(p); return 0; }
A.H e
B.Hello, World ello, World
C.Hello, World Hello, World
D.ello, World llo, World
第6题:
请编写函数cpy(char s1[ ], char s2[ ]),其功能是实现字符串的复制(不能使用库函数strcpy), 即把字符数组s2中的字符串复制到字符数组s1中。 例如main函数中输入"hello",“world”,则最后输出``world” ;