A.Especially
B.Partially
C.Entirely
D.Obviously
第1题:
I ()have been here, but I()not find the time.
A. could; could
B. might; could
C. should; could
D. should; would
第2题:
A、have…flowing
B、have…flow
C、have…to flow
D、have…flowed
第3题:
第4题:
第5题:
下列程序的输出结果是______。
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;
}
第6题: