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

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

 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

 

 


参考答案

更多 “ There’samanatthereceptiondeskwhoseemsveryangryandIthinkhemeans____trouble.A)makingB)tomakeC)tohavemadeD)havingmake ” 相关考题
考题 The teacher discussed with Jim, _____problems was poor study habits. A. one of whichB. one of whoseC. whoseD. who's

考题 Your argument ____ that human nature is essentially the same everywhere.A、guessB、pretendsC、assumesD、seems

考题 ( )knowledge of space developed rapidly. A、Person’sB、Mens’C、Men'sD、Man’s

考题 The relationship between "furniture" and "desk" is__________.A. hyponymy B. antonymy C. synonymy D. homonymy

考题 You are cordially invited to a formal_____being held in honor of the company's new vice president.A. receipt B. receiving C. receiver D. reception

考题 “前厅部”这一术语,在英语中被称为()A.LobbyB.Front deskC.Front officeD.Reception

考题 已知字符串s1='snow',s2='man',则表达式s1+s2的值为:A.'mansnow'B.'amnnosw'C.'snowman'D.7

考题 下面的代码的执行结果是____ s = 'F' if s == 'f': print('lady') else: print('man')

考题 2、已知字符串s1='snow',s2='man',则表达式s1+s2的值为:A.'mansnow'B.'amnnosw'C.'snowman'D.7

考题 【填空题】本程序的函数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】 ;} }