After a while, _____, he began to tell his story.A. slow and painfulB. slowly and painfulC. slowly and painfullyD. slow and painfully

After a while, _____, he began to tell his story.

A. slow and painful

B. slowly and painful

C. slowly and painfully

D. slow and painfully


相关考题:

以下与库函数strcpy(char *p, char *q)功能不相等的程序段是()。 A.strcpy1(char *p, char *q){ while ((*p++=*q++)!='\0')}B.strcpy2( char *p, char *q){ while((*p=*q)!='\0'){p++ q++}}C.strcpy3(char*p, char *q){ while (*p++=*q++)}D.strcpy4(char *p, char *q){ while(*p)*p++=*q++}

29__________A.politelyB.patientlyC.unconsciouslyD.slowly

I must have thrown away ( ) by mistake. A、his’B、hisC、he’sD、he

He__me he was leaving on Wednesday.A. saidB. toldC. tell

p指向线性链表中某一结点,则在线性链表的表尾插入结点s的语句序列是()。A.while(p->next!=NULL)p=p->next;p->next=s;s->next=NULL;B.while(p!=NULL)p=p->next;p->next=s;s->next=NULL;C.while(p->next!=NULL)p=p->next;s->next=p;p->next=NULL;D.while(p!=NULL)p=p->next->next;p->next=s;s->next=p->next;

Hurry up! The concert __________ for ten minutes.A、has begunB、had begunC、has been onD、began

You are signing on a deck officer,who will be designated as one of the GMDSS operators,before sailing foreign.Which statement is TRUE ________.A.He/she must have an STCW certificate endorsed as“Valid for Service on Vessels Operating in the GMDSS System”B.He/she must present either an FCC-issued license or a Coast Guard-issued licenseC.You must consult the“List of Qualifications”on the reverse of his/her FCC-issued licenseD.His/her Merchant Mariners Document must have an added endorsement as “Radio Electronics Officer”

The working parent is not willing to listen to her (his) four-year-old child talking about hissandbox games because she (he) is___________.A.boringB.very tiredC.busyD.angry

He picked a book from the bookshelf and then commenced to read.A: directedB: commentedC: committedD: began

以下while循环控制循环体执行10次。p=10; while ~mod(p,2) p=p+1 end