首页 > 代码库 > switch用法
switch用法
#include <stdio.h> #include <ctype.h> int main(int argc,char **argv) { char ch; printf("Enter the want you want:\n"); while((ch = getchar()) != ‘#‘) { if(ch == ‘\n‘) continue; //改成break的话,直接回车就会跳出循环。 if(islower(ch)) switch(ch) { case ‘a‘:puts("a");break; case ‘b‘:puts("b");break; case ‘c‘:puts("c");break; case ‘d‘:puts("d");break; default:printf("gameover.\n"); } else printf("simple.\n"); while(getchar() != ‘\n‘) //很经典的清空输入行 continue; printf("try again.\n"); } printf("bye.\n"); return 0; }
本文出自 “天才的实力” 博客,请务必保留此出处http://8299474.blog.51cto.com/8289474/1580306
switch用法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。