本文主要是介绍[C] C程序100例_031,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*
[C程序100例_031]
题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母。
程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或if语句判断第二个字母。
*///程序源代码:#include <stdio.h>
int main()
{char c;int i=1;while(i&&(c=getchar())){switch(c){case 'S':printf("Input the second letter:\n");if((c=getchar())=='u'){printf("It is Sunday\n");i=0;}else{printf("It is Saturday\n");i=0;}break;case 'T':printf("Input the second letter:\n");if((c=getchar())=='u'){printf("It is Tuesday\n");i=0;}else{printf("It is Thursday\n");i=0;}break;case 'W':printf("It is Wednesday\n");i=0;break;case 'M':printf("It is Monday\n");i=0;break;case 'F':printf("It is Friday\n");i=0;break;default:printf("Input error!\nInput again:");break; }}
}
这篇关于[C] C程序100例_031的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!