阅读下面的程序, 请写出程序的输出结果 。 #include using namespace std; int main () { enum Color {Red,Green,Blue}; Color color; color=Red; cout<
举一反三
- 下面对枚举变量的定义中,正确的是( )。 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;
- 已知enum color{red, yellow, blue=4, green=7,black=blue+2}; cout<<black; 输出的结果是 。
- 下面span标签中HelloWorld字体的颜色是:()span{color:green;}.red{color:red;}#blue{color:blue;}HelloWorld A: green B: red C: blue D: black
- 以下选项中不能正确把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;
- 分析如下代码,“文本”的颜色应该是:();p{color:blue;}p.special{color:red;}.special{color:green;};……;文本;…… A: blue B: green C: red D: 不确定