资源描述:
《选择结构程序设计》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验三选择结构程序设计(解答)1.改错题(1)下列程序的功能为:输入1个字母,如果它是小写字母,则首先将其转换成大写字母,再输出该字母的前序字母、该字母、该字母的后序字母,例如:输入g,则输出FGH;输入a,则输出ZAB;输入M,则输出LMN;输入Z,则输出YZA。请纠正程序中存在错误,使程序实现其功能,程序以文件名sy3_1.c存盘。#includemain(){charch,c1,c2;printf("Enteracharacter:");ch=getchar();if((ch>='a')
2、
3、(ch<='z'))//if((ch>='a')&&(ch<=
4、'z'))ch-=32;c1=ch-1;c2=ch+1;if(ch='A')//if(ch=='A')c1=ch+25;elseif(ch='Z')//elseif(ch=='Z')c2=ch-25;putchar(c1);putchar(ch);putchar(c2);putchar('');}改正后的程序:#includemain(){charch,c1,c2;printf("Enteracharacter:");ch=getchar();if((ch>='a')&&(ch<='z'))ch-=32;c1=ch-1;c2=ch+1;if(ch=='A
5、')c1=ch+25;elseif(ch=='Z')c2=ch-25;putchar(c1);putchar(ch);putchar(c2);putchar('');}(2)下列程序的功能为:输入3个整数后,输出其中最大值。请纠正程序中存在错误,使程序实现其功能,程序以文件名sy3_2.c存盘。#include"stdio.h"main(){inta,b,c,max;printf("请输入3个整数:");scanf("%d%d%d",&a,&b,&c);max=a;if(c>b){if(b>a)max=c;}/*c>b>a*/else/*b>c*/{if(c>a)ma
6、x=b;}/*b>c>a*/printf("3个数中最大者为:%d",max);}改正后的程序:#include"stdio.h"main(){inta,b,c,max;printf("请输入3个整数:");scanf("%d%d%d",&a,&b,&c);max=a;if(c>b){if(c>a)max=c;}else{if(b>a)max=b;}printf("3个数中最大者为:%d",max);}(3)下列程序的功能为:输入1-4月份号,输出该月份对应的英语表示法。例如,输入“3”,则输出“March”。请纠正程序中存在错误,使程序实现其功能,程序以文件名s
7、y3_3.c存盘。#include"stdio.h"main(){charm;printf(“inputthemonthnumber:”);scanf(“%c”,&m);switch(m){case1:printf(“Jan”);case2:printf(“Feb”);case3:printf(“Mar”);case4:printf(“Apr”);}}改正后的程序:改法一#include"stdio.h"main(){charm;printf("inputthemonthnumber:");scanf("%d",&m);switch(m){case1:printf("
8、Jan");break;case2:printf("Feb");break;case3:printf("Mar");break;case4:printf("Apr");}}改法二#include"stdio.h"main(){charm;printf("inputthemonthnumber:");scanf("%c",&m);switch(m){case‘1’:printf("Jan");break;case‘2’:printf("Feb");break;case‘3’:printf("Mar");break;case‘4’:printf("Apr");}}2.程序填空
9、(1)下列程序的功能为:判断从键盘上输入的一个字符,并按下列要求输出。若该字符是数字输出字符串"0-9"若该字符是大写字母输出字符串"A-Z"若该字符是小写字母输出字符串"a-z"若该字符是其他字符输出字符串"!,@,…"请填写适当的符号或语句,使程序实现其功能,程序以文件名sy3_4.c存盘。#includemain(){charc;scanf(_____________________);if('0'<=c&&c<='9')__________________________els