#include <stdio.h>
enum color{
red,yellow,green};
int main()
{
int t;
t=green;
printf(" %d\n"
C语言 枚举小例子
最新推荐文章于 2022-10-30 23:34:39 发布
#include <stdio.h>
enum color{
red,yellow,green};
int main()
{
int t;
t=green;
printf(" %d\n"