- 1、本文档共16页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实验一 选择结构程序设计 1.编写程序,使之具有如下功能:输入a、b、c三个整数,按从大到小的顺序进行输出。 #include stdio.h void main() { int a,b,c,t; printf(Please input 3 Numbers:); scanf(%d,%d,%d,a,b,c); if(ab){t=a;a=b;b=t;} if(ac){t=a;a=c;c=t;} if(bc){t=b;b=c;c=t;} printf(%d %d %d\n,a,b,c); } 2.编写程序,求解下列分段函数: x (-5x0) y= x-1 (x=0) x+1 (0x10) 100 其它 注意: 当-5x0的时候,判断表达式应该使用x-5x0; 当x=0的时候,判断表达式应该用x==0。 #includestdio.h void main() {float x,y; printf(please input x:); scanf(%f,x); if(x-5x0) y=x; else if (x==0) y=x-1; else if (x0x10) y=x+1; else y= 100; printf(x=%f,y=%f\n,x,y); } #include stdio.h void main() { float x,y; printf(Please input x:); scanf(%f,x); if(x-5x0) y=100; else if(x==0) y=x-1; else if(x0) y=x; else y=x+1; printf(x=%f,y=%f,x,y); } 3.某托儿所收2岁到6岁的孩子,2岁、3岁孩子进小班(Lower class);4岁孩子进中班(Middle class);5岁、6岁孩子进大班(Higher class)。编写程序(用switch语句),输入孩子年龄,输出年龄及进入的班号。如:输入:3,输出:age:3,enter Lower class。 #include stdio.h void main() { int age; printf(Please input age:); scanf(%d,age); switch(age) {case 2: case 3:printf(age:%d,enter Lower class.,age);break; case 4:printf(age:%d,enter Middle class.,age);break; case 5: case 6:printf(age:%d,enter Higher class.,age);break; default:printf(Cant enter our class.) } } 实验二 循环结构程序设计 1.计算SUM的值。计算公式如下: SUM= 1+1/2-1/3+1/4 - …… 1/n 键盘输入n=10 #include stdio.h void main( ) { int i,n; float s,t,sign; s=1;t=0,sign=1; scanf(%d,n); for(i=2;i=n;i++) { t=1.0/i*sign; s=s+t; sign=-sign; } printf(s=%f\n,s); } 2.求s =1!+ 2!+ … + 20! 。 #include stdio.h void main() { int i; float s=0,t=1; for(i=1;i=20;i++) {t=t*i; s=s+t; } printf( %f\n,s); } 3.输出如下所示由数字组成的形状。 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 4 5 4 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1 #include stdio.h void main() { int i,j,n; for(i=1;i=5;i++) { for(j=1;j=i;j++) { printf(%d,j); } for(j=i-1;j0;j--) { printf(%d,j); } printf(\n); } for(i=1;i=4;i++) { for(j=1;j=5-i;j++) { printf(%d,j); } for(j=4
您可能关注的文档
最近下载
- 信息系统安全管理记录表单汇编.docx
- 炼铁厂1080m3高炉试车方案.doc
- 生物大数据(福建农林大学)中国大学MOOC 慕课 章节测验期末考试答案.docx
- 中国传统节日——冬至节日介绍(教学设计)全国通用五年级上次综合实践活动.docx
- AP微积分BC (2018年真题)全套含选择题及答案.pdf VIP
- OEM代工与加工合同协议书范本 详细版.docx
- 关于农业自动化灌溉浇灌滴灌控制系统设计有关 的外文文献翻译成品:自动灌溉系统的设计与实现(中英文双语对照).docx
- 宪法多选题新题.doc VIP
- Bain-德邦产品融合项目里程碑汇报(上会终稿)-20170525.pptx VIP
- 宪法考试多选题 .pdf VIP
文档评论(0)