91学习

陪伴你每一天!

用枚举enum 输出你喜欢的颜色

#include <stdio.h>


enum Color{Red=1,Blue,Green} color;

int main(){

int icolor;

printf("请输入你喜欢的颜色编号:\n");

scanf("%d",&icolor);

switch(icolor){

case Red:

printf("the choice is Red\n");

break;

case Blue:

printf("the choice is Blue\n");

break;

case Green:

printf("the choice is Green\n");

break;

default:

printf("???\n");

break;

}

return 0;

}

加威信18790284560免费送POS机.jpg

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。