I forgot to return the book to you yesterday. So I()today.A、might do itB、must do itC、had to do itD、must have to do it

I forgot to return the book to you yesterday. So I()today.

  • A、might do it 
  • B、must do it
  • C、had to do it
  • D、must have to do it

相关考题:

I forgot to ____________my alarm and I overslept. (A) make(B) set(C) arrange(D) range

有如下程序:#includeusing namespace std;class Complex{double re, im;public:Complex(double r, double i):re(r), im(i){}double real() const{return re;}double image() const{return im;}Complex operator +=(Complex a){re += a.re;im += a.im;return *this;}};ostream operator(ostream s,const Complex z){return s'('}int main(){Complex x(1, -2), y(2, 3);cout(x += y)return 0;}执行这个程序的输出结果是A . (1, -2)B . (2, 3)C . (3, 5)D . (3, 1)

下列程序的输出结果是非曲直【 】。includeclass base{ int x, y;public: base(int i, 下列程序的输出结果是非曲直【 】。include<iostream, h>class base{int x, y;public:base(int i, int j){x=i; y=j;}virtual int add(){return x+ y;}};class three: public base{int z;public:three(int i, int j, int k) :base(i, j){z=k; }int add() { return (base:: add()+z); }};void main(){three * q=new three(lO,20,30);cout<<q->add()<<end1;}

I will lend you the book ________you return it to me in timeB.on condition thatC.in caseD.in order thatE.so that

-- I'd like to book a flight to Beijing, please.-- _____.A. No, you can'tB. Yes, sir, single or return?C. We are busy.D. Wait

下列程序编译错误,因为add函数返回值是一个引用,故对return后返回值的要求是【 】。include<iostream. h>int add(int x, int y){return x+y;}void main( )int i=3,j=19;cout<<(add(i,j)+ =20)<<end1;}

—_______ I return the book to the library this week?— No, you _______.You can keep it until the end of this month. A.Must; needn’tB.Can; can’tC.May; mustn’tD.Can; mustn’t

It was not long _______ I forgot it all.A、thenB、whenC、afterD、before

下面程序的结果【】。 include int f(int); void main() { int x=1,i; for (i=0; i 下面程序的结果【 】。include<iostream.h>int f(int);void main() {int x=1, i;for (i=0; i<3; i++)cout<<f(x)<<‘ ’ ;cout<<end1;}int f(int x){int y=1;static int z=3y++;z++;return (x+y+z);}

以下函数的功能是:求x的y次方,请填空。double fun(double x,int y){ int i; double z; for(i=1,z=x;iy;i++) z=z*; return z;}

下列程序的输出结果是______。 include class base { int x,y; public: base(int i,i 下列程序的输出结果是______。include<iostream.h>class base{int x,y;public:base(int i,int j){x=i;y=j;}virtual int add( ){return x+y;}};class three:public base{int z;public:three(int i,int j,int k):base(i,j){z=k;)int add( ){return(base::add( )+z);}};void main( ){three*q=new three(10,20,30);cout<<q->add( )<<endl;}

有如下程序: include using namespace std; int fun1(int x) {return++x;} int fun2(i 有如下程序:include<iostream>using namespace std;int fun1(int x) {return++x;}int fun2(int x) {return++x;}int main(){int x=1,y=2;y=fun 1(fun2(x));cout<<X<<','<<y;return 0:}程序的输出结果是______。

Is it neCessary ( ) the book immediately?A for him to returnB that he retutnsC his returningD to him return

Is it necessary ( ) the book immediately?A. for him to return B. that he returnsC. his returning D. to him return

I forgot ()an umbrella with me when I left home for work.AtakeBto takeCtakingDtook

After()the shopping list, I found that I forgot to buy salt.AexaminingBtestingCcheckingDseeing

I forgot to return the book to you yesterday. So I()today.Amight do itBmust do itChad to do itDmust have to do it

考虑下面的函数: int min(int x,int y){return xint max(int x,int y){return xy?x:y;} 对于下面的代码: t=0; for(i=max(x,y);i=min(x,y);i--) t+=i; 假设x=1,y=100,则可以得到函数调用的次数为()A、200B、201C、101D、102

单选题I would just as soon you _____ the book yesterday.Ahad returnedBreturnedCwould have returnedDwould return

单选题I forgot ()an umbrella with me when I left home for work.AtakeBto takeCtakingDtook

填空题我一读完这本书就还给你。I will return the book to you ____ it.

单选题I forgot to return the book to you yesterday. So I()today.Amight do itBmust do itChad to do itDmust have to do it

单选题public class SyncTest {  private int x;  private int y;  private synchronized void setX( int i ) { x = i; }  private synchronized void setY( int i ) { y = i; }  public void setXY( int i ) { setX(i); setY(i); }  public synchronized boolean check() { return x != y; }  }   Under which condition will check return true when called from a different class? ()A check can never return true.B check can return true when setXY is called by multiple threads.C check can return true when multiple threads call setX and setY separately.D check can return true only if SyncTest is changed to allow x and y to be set separately.

单选题I shall give you the book ______ you return it no later than tomorrow.Aon condition thatBin condition thatCwith condition thatDin any condition

单选题I'm sorry I forgot to write; I had so much else()my mind.AoverBforConDabout

单选题—Excuse me, may I keep the book a little longer?—Sorry. You ______ return it today.AmustBmustn’tCcanDcan’t

单选题考虑下面的函数: int min(int x,int y){return xint max(int x,int y){return xy?x:y;} 对于下面的代码: t=0; for(i=max(x,y);i=min(x,y);i--) t+=i; 假设x=1,y=100,则可以得到函数调用的次数为()A200B201C101D102

单选题public class SyncTest {  private int x;   private int y;   public synchronized void setX (int i) (x=1;)   public synchronized void setY (int i) (y=1;)   public synchronized void setXY(int 1)(set X(i); setY(i);)   public synchronized Boolean check() (return x !=y;)   }   Under which conditions will check () return true when called from a different class?A Check() can never return true.B Check() can return true when setXY is called by multiple threads.C Check() can return true when multiple threads call setX and setY separately.D Check() can only return true if SyncTest is changed to allow x and y to be set separately.