My colleague demanded that I ______the books I borrowed from him.A. returnB.would returnC. returnedD. was to return

My colleague demanded that I ______the books I borrowed from him.

A. return

B.would return

C. returned

D. was to return


相关考题:

Using "I" or "My' instead of "most people" or "our group" ______ message credibility.A decreasesB increasesC has no effect onD distortsE A and B

59 Using "I" or "My' instead of "most people" or "our group" ______ message credibility.A. decreasesB. increasesC. has no effect onD. distortsE. A and B

A: Would you like to come to ( )shop one day? B: Yes, I'd love to. Thank you. A. myselfB. meC. my

I, my, will, true, come, hope, dream__________________________________________________________________________.

I've been a doctor( ) 1989. A.inB.sinceC.forD.from

I'll leave my bike____. I'll not need it for the time being.A、behindB、beforeC、backD、from

有以下程序:includeusing namespace std;class MyClass{public: MyClass(); ~MyClass 有以下程序: #include<iostream> using namespace std; class MyClass { public: MyClass(); ~MyClass(); void SetValue(int val); private: static int i; }; int MyClass::i=0; MyClass::MyClass() { i++; cout<<i; } MyClass::~MyClass() { i--; cout<<i; } void MyClass::SetValue(int val) { i=val; } int main() { MyClass*my[2]; int k; for(k=0;k<2;k++) my[k]=new MyClass; for(k=0;k<2;k++) delete my[k]; return 0; } 运行后的输出结果是( )。A.1210B.1100C.1234D.输出结果不确定

以下程序能顺利通过编译: public class am_I_right { public static void main(String args[]) { this.toString(); } String toString() { retur。() 此题为判断题(对,错)。

30、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { for(j=0;books[i][j]!=0;j++){ if(books[i][0]<books[i][j]) books[i][0]= books[i][j]; } } printf("%c",books[0][0]); return 0; }A.EB.sC.nD.h

29、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { strcat(books[i],"book"); } printf("%s",books[i-1][3]); return 0; }A.PhysicalbookB.sicalC.PhysicalD.sicalbook