There’s a man at the reception desk who seems very angry and I think he means____ trouble.
A) making B) to make
C) to have made D) having make
选B
mean to do打算 固定搭配
第1题:
第2题:
已知字符串s1='snow',s2='man',则表达式s1+s2的值为:
A.'mansnow'
B.'amnnosw'
C.'snowman'
D.7
第3题:
2、已知字符串s1='snow',s2='man',则表达式s1+s2的值为:
A.'mansnow'
B.'amnnosw'
C.'snowman'
D.7
第4题:
“前厅部”这一术语,在英语中被称为()
A.Lobby
B.Front desk
C.Front office
D.Reception
第5题:
下面的代码的执行结果是____ s = 'F' if s == 'f': print('lady') else: print('man')
第6题:
【填空题】本程序的函数ver是使输入的字符串按反序存放,在主函数中输入和输出字符串。 main() { char str[100]; scanf("%s",str); ver(str); printf("%sn",str); } ver(【1】 ) char str[] { char t; int i,j; for(i=0,j=strlen(str);i<strlen(str)/2;i++,j--) { t=str[i]; 【2】 ; 【3】 ;} }