C enum(枚举) 枚举是C 语言中的一种基本数据类型,用于定义一组具有离散值的常量。, ... int main() { enum DAY day; day = WED; printf("%d",day); return 0; }.
確定! 回上一頁