itgle.com
更多“以下对枚举类型名的定义中正确的是()A.enum a={one,two,three};B.enum a{one=9,two=-1,three=200 ”相关问题
  • 第1题:

    以下对枚举类型名的定义中正确的是( )。

    A.enum a={one,two,three};

    B.enum a{one=9,two=-1.three=200};

    C.enum a={"one","two","four"};

    D.enum a{"nine","two","three"};


    正确答案:B
    解析:枚举类型的定义类似于结构体和共用体,所以选项A和C不正确。大括号中的枚举元素应该使用合法标识符来定义,而不是字符串常量,所以选项D不正确。故应该选择B。

  • 第2题:

    8、以下对枚举类型名的定义中正确的是

    A.enum a {one=9,two=-1,three};

    B.enum a={“one”, “two”, “three”};

    C.enum a {“one”, “two”, “three”};

    D.enum a={one, two, three};


    enum a{a1,a2,a3};

  • 第3题:

    以下对枚举类型名的定义中正确的是()。

    A.enum a={one,two,three};

    B.enum a {one=9,two=-1,three};

    C.enum a={"one","two","three"};

    D.enum a {"one","two","three"};


    A

  • 第4题:

    以下对枚举类型名的定义中正确的是

    A.enum a {one=9,two=-1,three};

    B.enum a={“one”, “two”, “three”};

    C.enum a {“one”, “two”, “three”};

    D.enum a={one, two, three};


    enum a{a1,a2,a3};

  • 第5题:

    1、以下对枚举类型名的定义中正确的是()。

    A.enum a={one,two,three};

    B.enum a {one=9,two=-1,three};

    C.enum a={"one","two","three"};

    D.enum a {"one","two","three"};


    enum a {one=9,two=-1,three};