I am writing to discuss my ________ a current account with your branch.
A、open
B、opening
C、to open
D、opened
第1题:
A:I'm keen on football.
B: So ( )I.
A. have
B. do
C. am
第2题:
第3题:
下面对循环单链表的删除操作步骤中正确的是()
A.定位要删除的结点,将前一个结点previous和当前结点current都设置为start。#B.当前结点current的索引号为i时,使当前结点current的前一个结点指向当前结点current的下一个结点。#C..释放标记为当前结点的结点内存,current设为null。#D.以上选项都对第4题:
下列程序的运行结果是【 】。
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()
}
第5题:
【单选题】下面程序的输出是。 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