There’samanatthereceptiondeskwhoseemsveryangryandIthinkhemeans____trouble.A)makingB)tomakeC)tohavemadeD)havingmake
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
相关考题:
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
The relationship between "furniture" and "desk" is__________.A. hyponymyB. antonymyC. synonymyD. homonymy
You are cordially invited to a formal_____being held in honor of the company's new vice president.A. receipt B. receivingC. receiver D. reception
【填空题】本程序的函数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】 ;} }