niusouti.com

_____ football match between China and Korea was held yesterday, but I failed to get _____ ticket.What _____ pity!A、The、/、aB、A、a、/C、The、the、aD、A、the、/

题目
_____ football match between China and Korea was held yesterday, but I failed to get _____ ticket.What _____ pity!

A、The、/、a

B、A、a、/

C、The、the、a

D、A、the、/


相似考题
更多“_____ football match between China and Korea was held yesterday, but I failed to get _____ ticket.What _____ pity! ”相关问题
  • 第1题:

    下列不能从“yesterday”中取出字符串“yes”的函数是()。

    A、MID(“yesterday”,1,3)

    B、LEFT(“yesterday”,3)

    C、MIDB(“yesterday”,1,6)

    D、RIGHT(MID(“yesterday”,1,3),3)


    答案:C

  • 第2题:

    根据下列程序的执行结果,可以断定划线部分的修饰符应为______。执行结果:

    i9a football is created.

    a football is created.

    i=10

    a football is destroyed.

    a football is created.

    i=20

    a football is destroyed.

    a football is destroyed.

    源程序:

    include<iostream.h>

    class Football

    {

    public:

    Football( ){cout<<"a football is created."<<endl;}

    ~Football( ){tout<<"a football is destroyed."<<endl;}

    };

    void func(int i)

    {

    ______Football f1;

    Football f2;

    cout<<"i="<<i<<endl;

    }

    void main( )

    {

    func(10);

    func(20);

    }


    正确答案:static
    static 解析:观察一下输出中对象的构造函数和析构函数的执行次数可以看出,再次进入时某对象没有被构造,亦即该对象在func执行后没有被销毁,再次进入时则不需要重构,可以体现这种功能的标识符只有static。

  • 第3题:

    下面的定义语句中,使数组str不能正确保存字符串的是()。

    A.char str[6]="China";

    B.char str[ ]="China";

    C.char str[5]={'C','h','i','n','a'};

    D.char str[6]={"China"};


    D解析:本题考察cin流对象的几种成员函数get,getline,read及流提取符>>的使用规则。

  • 第4题:

    ()his head high,the manager walked into the room to attend the meeting()then.

    A、Holding...being held

    B、Held...holding

    C、Having held...held

    D、Held⋯ be held


    参考答案:A

  • 第5题:

    有下列声明语句 char s[6][10]={"China's", "first", "football", "textbooks", "for","schools"}; char *p[5],(*q)[10],*r; 下列哪个赋值语句是不正确的?

    A.p=s ;

    B.q=s ;

    C.r=&s[0][0] ;

    D.p[0]=s[0];


    C

  • 第6题:

    以下字符串赋值的表达式中,不能正确赋值的是()。

    A.char s[ ] = "china";

    B.char s[10]; s = "china";

    C.char *s = "china" ;

    D.char s[10] = {'c','h','i','n','a','0'};


    A解析:语言中不能将字符串常量直接赋给数组。但在赋初值时可以。