• 2022-06-05 问题

    阅读下面的程序, 请写出程序的输出结果 。 #include<iostream> using namespace std; int main () { enum Color {Red,Green,Blue}; Color color; color=Red; cout<<color<<","; color=Green; cout<<color<<","; color=Blue; cout<<color<<","; cout<<Red+Green+Blue<<endl; return 0; }

    阅读下面的程序, 请写出程序的输出结果 。 #include<iostream> using namespace std; int main () { enum Color {Red,Green,Blue}; Color color; color=Red; cout<<color<<","; color=Green; cout<<color<<","; color=Blue; cout<<color<<","; cout<<Red+Green+Blue<<endl; return 0; }

  • 2022-06-19 问题

    下面对枚举变量的定义中,正确的是( )。 A: enum color {red, blue, grenn} a, b; B: enum color={red, blue, green} a,b; C: enum color={"red", "blue", "green"} a, b; D: enum color {red, blue, green} a, b;

    下面对枚举变量的定义中,正确的是( )。 A: enum color {red, blue, grenn} a, b; B: enum color={red, blue, green} a,b; C: enum color={"red", "blue", "green"} a, b; D: enum color {red, blue, green} a, b;

  • 2022-06-05 问题

    下面span标签中HelloWorld字体的颜色是:()span{color:green;}.red{color:red;}#blue{color:blue;}HelloWorld A: green B: red C: blue D: black

    下面span标签中HelloWorld字体的颜色是:()span{color:green;}.red{color:red;}#blue{color:blue;}HelloWorld A: green B: red C: blue D: black

  • 2022-06-06 问题

    函数rgb(red,green,blue)的参数green表示()

    函数rgb(red,green,blue)的参数green表示()

  • 2022-06-03 问题

    下列源代码用于设置一个<;div>;元素的样式。再增加( )就可以获得如下图像。 div { width: 100px; height: 100px; border-style: solid; border-width: 5px; }[img=110x110]17e443a8753385d.png[/img] A: border-color: green blue orange red; B: border-color: blue orange red green; C: border-color: red green blue orange; D: border-color: orange red green blue;

    下列源代码用于设置一个<;div>;元素的样式。再增加( )就可以获得如下图像。 div { width: 100px; height: 100px; border-style: solid; border-width: 5px; }[img=110x110]17e443a8753385d.png[/img] A: border-color: green blue orange red; B: border-color: blue orange red green; C: border-color: red green blue orange; D: border-color: orange red green blue;

  • 2022-06-06 问题

    以下选项中不能正确把cor定义成结构体变量的是______。 A: struct{ int red; int green; int blue;} cor; B: struct color cor{ int red; int green; int blue;}; C: struct color{ int red; int green; int blue;} cor; D: typedef struct{ int red;int green;int blue;}COLOR;COLOR cor;

    以下选项中不能正确把cor定义成结构体变量的是______。 A: struct{ int red; int green; int blue;} cor; B: struct color cor{ int red; int green; int blue;}; C: struct color{ int red; int green; int blue;} cor; D: typedef struct{ int red;int green;int blue;}COLOR;COLOR cor;

  • 2022-07-27 问题

    下列样式中能显示边框类型为SOLID,上边框红色,下边框蓝色,左边框黄色,右边框绿色的是( )。 A: order:solid;border-color: red green blue yellow B: order:solid;border-color: red blue yellow green C: order:solid;border-color: red blue green yellow D: order:solid;border-color: red yellow blue green

    下列样式中能显示边框类型为SOLID,上边框红色,下边框蓝色,左边框黄色,右边框绿色的是( )。 A: order:solid;border-color: red green blue yellow B: order:solid;border-color: red blue yellow green C: order:solid;border-color: red blue green yellow D: order:solid;border-color: red yellow blue green

  • 2022-05-28 问题

    The colour of the first suit was . A: blue B: green C: red

    The colour of the first suit was . A: blue B: green C: red

  • 2022-06-05 问题

    分析如下代码,“文本”的颜色应该是:();p{color:blue;}p.special{color:red;}.special{color:green;};……;文本;…… A: blue B: green C: red D: 不确定

    分析如下代码,“文本”的颜色应该是:();p{color:blue;}p.special{color:red;}.special{color:green;};……;文本;…… A: blue B: green C: red D: 不确定

  • 2021-04-14 问题

    以下选项中不能正确把cl定义成结构体变量的是______。 1.typedefstruct {intred; int green; int blue; } COLOR; COLOR cl; 2.structcolor cl { int red; int green; int blue; }; 3.structcolor { int red; int green; int blue; }cl; 4.struct {int red; int green; intblue; }c1;

    以下选项中不能正确把cl定义成结构体变量的是______。 1.typedefstruct {intred; int green; int blue; } COLOR; COLOR cl; 2.structcolor cl { int red; int green; int blue; }; 3.structcolor { int red; int green; int blue; }cl; 4.struct {int red; int green; intblue; }c1;

  • 1 2 3 4 5 6 7 8 9 10