He asked who I voted for and I said it was my own ( ).
A.thing
B.matter
C.duty
D.business
第1题:
A.me; me
B.me; has
C.I; am
D.I; is
第2题:
A.asked for
B.asked
第3题:
"Oh, I'm sorry," he ______ her.
A、cried
B、told
C、apologized
D、said
第4题:
I, my, will, true, come, hope, dream
__________________________________________________________________________.
第5题:
Client: Hello. May I speak to Mr. Black?
Secretary:_______
A: Speaking, please
B: I ’m sorry. He ’s at a meeting right now.
C: Hello. Who ’re you, please?
D: Hello. Thank you for calling.
第6题:
有以下程序: #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.1210
B.1100
C.1234
D.输出结果不确定