第 14 章 结构和其他数据形式(enum枚举)
2018-06-18 03:45:45来源:未知 阅读 ()
1 /*----------------------------- 2 enum.c -- 使用枚举类型的值 3 -----------------------------*/ 4 5 #include <stdio.h> 6 #include <string.h> 7 //#include <stdbool.h> //C99特性 8 9 #define LEN 30 10 11 char* s_gets(char *st, int n); 12 13 enum spectrum {red, orange, yellow, green, blue, violet}; 14 const char *colors[] = {"red", "orange", "yellow", "green", "blue", "violet"}; 15 16 int main() 17 { 18 char choice[LEN]; 19 int color; 20 bool color_is_found = false; 21 22 puts("Enter a color (empty line to quit):"); 23 24 while (s_gets(choice, LEN) != NULL && choice[0] != '\0') 25 { 26 for (color = red; color != violet; ++color) 27 { 28 if (strcmp(choice, colors[color]) == 0) 29 { 30 color_is_found = true; 31 break; 32 } 33 } 34 35 if (color_is_found) 36 switch (color) 37 { 38 case red: 39 puts("Roses are red."); 40 break; 41 case orange: 42 puts("Poppies are orange."); 43 break; 44 case yellow: 45 puts("Sunflowers are yellow."); 46 break; 47 case green: 48 puts("Grass is green"); 49 break; 50 case blue: 51 puts("Bluebells are blue"); 52 break; 53 case violet: 54 puts("Violets are violet"); 55 break; 56 } 57 else 58 printf("I don't know about the color %s.\n", choice); 59 60 color_is_found = false; 61 62 puts("Next color, please (empty line to quit):"); 63 } 64 65 puts("Goodbye"); 66 67 return 0; 68 } 69 70 char* s_gets(char *st, int n) 71 { 72 char *ret_val, *find; 73 74 if (ret_val = fgets(st, n, stdin)) 75 { 76 if (find = strchr(st, '\n')) 77 *find = '\0'; 78 else 79 while (fgetc(stdin) != '\n') continue; 80 } 81 82 return ret_val; 83 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 关于各种不同开发语言之间数据加密方法(DES,RSA等)的互通的 2020-06-07
- C++ 共用体 2020-06-05
- C语言程序结构 2020-05-31
- 数据结构—链表 2020-05-29
- Qt做Tcp数据传输 2020-05-26
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash