首页上一页 1 下一页尾页 1 条记录 1/1页
第12章 枚举类型 为什么在举例里面用的是()小括号,在实例里面是{}大括号,我在写代码的时候小括号不能用是为什么?
发表在C语言图书答疑
2019-05-24 悬赏:1 学分
《零基础学C语言》第12章 共用体与枚举类型 310页-311页
是否精华
是
否
版块置顶:
是
否
#include<stdio.h>
enum Color{Red=1,Blue,Green} color;/*定义枚举变量,并初始化*/
int main()
{
int icolor; /*定义整型变量*/
scanf("%d",&icolor); /*输入数据*/
switch(icolor) /*判断icolor值*/
{
case Red: /*枚举常量,Red表示1*/
printf("the choice is Red\n");
break;
case Blue: /*枚举常量,Blue表示2*/
printf("the choice is Blue\n");
break;
case Green: /*枚举常量,Green表示3*/
printf("the choice is Green\n");
break;
default:
printf("???\n");
break;
}
return 0;
}