文件名称:枚举类型数据-计算机二级C语言(重要知识点)
文件大小:1.7MB
文件格式:PPT
更新时间:2024-05-15 11:36:04
PPT
7.枚举类型数据 (1)枚举类型定义; enum date{sun,mon,tue,wed,thu,fri,sat}; sun==0,mon==1,tue==2,......,sat =6 enum color{ red , yellow , blue = 5 , white}; red==0,yellow==1,blue==5,white = 6 例题:2007年秋选择题29 29.若有枚举类型定义”enum list1{ x1,x2,x3,x4=6,x5,x6};”枚举常量x2和x6代表的值分别是_______ A.1,6 B.1,8 C.2,6 D.2,8