My father asked __ to help with his work.
A.I and Tom
B.Tom and me
C.me and Tom
D.Tom and I
第1题:
A.asked for
B.asked
第2题:
下列程序的输出结果是【 】。
include<iostream. h>
class MyClass
{
public:
int number;
void set(int i);
};
int number=3;
void MyClass: :set (int i)
{
number=i;
}
void main( )
{
MyClass my1;
int number=10;
my1.set(5),
cout<<my1, number<<',';
my1.set(number);
cout<<my1.number<<',';
my1.set(: :number);
cout<<my1.number<<'.';
}
第3题:
I () help. I can do it myself.
Aneed to
Bdon’t need
Cneedn’t
Dneed
第4题:
I'd love to()with you my new kitchenware.
A. share
B. put
C. help
第5题:
A.need to
B.don’t need
C.needn’t
D.need
第6题:
【单选题】下面程序的输出是。 main() {enum team {my,your=4,his,her=his+10}; printf("%d%d%d%dn",my,your,his,her);}
A.0 1 2 3
B.0 4 0 10
C.0 4 5 15
D.l 4 5 15