A.cannot but admit
B.cannot help but to admit
C.cannot but admitting
D.cannot help but admitting
第1题:
40____
A. questions
B. comments
C. explanations
D. remarks
第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题:
下列程序的运行结果是【 】。
include <iostream. h>
class SomeClass
{
public:
SomeClass(int value) { some_value=value;};
void show_data(void) { cout<<data<<"<<~some_value<<endl; };
static void set_data(int value) {data=value; }
private:
static int data;
int some_value
};
int SomeClass::data
void main(void)
{
SomeClass my_class(1001),your_class(2002);
your_class. set_data(4004);
my_elass. show_data()
}
第4题:
A.were, will go
B.go, have been gone
C.go, will go
D.are going, am going
第5题:
What's ( )job? Are ( ) British?
A. your, your
B. you, your
C. your, you
第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