资源描述:
《实验3程序流程设计_选择结构程序设计说明书》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、word完美格式淮海工学院计算机科学系实验报告书课程名:《C语言程序设计A》题目:实验2程序流程设计——选择结构程序设计班级:软嵌151学号:2015123349姓名:陈正宁评语:成绩:指导教师:批阅时间:年月日精心整理学习帮手word完美格式1、实验内容或题目(1)编写一个程序,输入一个字母,若为大写字母,将其转换为小写字母后输出,否则原样输出。(2)编写一个程序判断用户输入的字符是数字字符、字母字符还是其他字符。(3)编写一个程序,输入年号和月份,判断该年是否为闰年,并根据给出的月份判断是什
2、么季节和该月有多少天?闰年的条件是年号能被4整除但不能被100整除,或者能被400整除。(4)编写一个程序,求ax2+bx+c=0方程的根。(5)给出一个百分制的成绩,要求输出成绩等级’A’,’B’,’C’,’D’,’E’。90分以上的为’A’,80~89分的为’B’,70~79分的为’C’,60~69分的为’D’,60分以下的为’E’。(要求使用switch语句)2、实验目的与要求(1)进一步熟悉熟悉VC++6编译环境,掌握运用VC编译C程序的基本方法;(2)学会使用C语言的常用运算符,以及包
3、含这些运算符的表达式;(3)掌握常见的流程控制结构(顺序、选择),学会运用这两种控制结构编写C程序。3、实验步骤与源程序⑴实验步骤精心整理学习帮手word完美格式(1)、(2)、精心整理学习帮手word完美格式(3)、精心整理学习帮手word完美格式(4)、精心整理学习帮手word完美格式(5)、精心整理学习帮手word完美格式⑵源代码(1)、#includeintmain(){charch;scanf("%c",&ch);if(ch>='A'&&ch<='Z'){ch+=32
4、;printf("%c",ch);}elseprintf("%c",ch);return0;}(2)、#includeintmain()精心整理学习帮手word完美格式{charch;ch=getchar();if(ch>='0'&&ch<='9')printf("您输入的是数字字符");elseif(ch>='a'&&ch<='z'
5、
6、ch>='A'&&ch<='Z')printf("您输入的是字母字符");elseprintf("您输入的是其他字符");
7、return0;}(3)、#includeintmain(){intyear,month,days,leap;scanf("%d%d",&year,&month);if(year%4==0&&year%100!=0
8、
9、year%400==0)leap=1;elseleap=0;if(leap)printf("%disaleapyear",year);elseprintf("%disnotaleapyear",year);精心整理学习帮手word完美格式{if(leap=
10、1){if(month==2)printf("themonthhas29days");elseif(month==1
11、
12、3
13、
14、5
15、
16、7
17、
18、8
19、
20、10
21、
22、12)printf("themonthshas31days");elseprintf("themonthshas30days");}}{if(leap=0){if(month==2)printf("themonthhas28days");elseif(month==1
23、
24、3
25、
26、5
27、
28、7
29、
30、8
31、
32、10
33、
34、12)printf("the
35、monthshas31days");elseprintf("themonthshas30days");}}{if(month>=3&&month<=5)printf("spring");elseif(month>=6&&month<=8)printf("summer");elseif(month>=9&&month<=11)printf("autumn");精心整理学习帮手word完美格式elseprintf("winter");return0;}}(4)、#includ
36、e#includevoidmain(){doublea,b,c,disc,x1,x2,p,q;//disc是判别式sqrt(b*b-4ac)printf("请输入[a,b,center]");scanf("%lf%lf%lf",&a,&b,&c);disc=b*b-4*a*c;if(0==a){if(0==b){if(0==c)printf("此方程有任意解.");else//a=0b=0c!=oprintf("此方程无解.");}else//a=0