C程序设计教案112课时——选择结构综合例题.docx
《C程序设计教案112课时——选择结构综合例题.docx》由会员分享,可在线阅读,更多相关《C程序设计教案112课时——选择结构综合例题.docx(5页珍藏版)》请在第一文库网上搜索。
1、教案序号11周次授课形式新授授课章节名称选择结构综合举例教学目的学会使用选择结构教学重点学会使用选择结构教学难点学会使用选择结构使用教具机房课外作业课后体会授课主要内容 4.8选择结构程序综合举例例4.8写一程序,判断某一年是否闰年。 解题思路:在前面已介绍过判别闰年的方法 本例用不同的方法编写程序 4.8选择结构程序综合举例 用变量Ie叩代表是否闰年的信息。若闰年,令Ieap=I;非闰年,1eap=。最后判断IeaP是否为1(真),若是,则输出“闰年”信息 参见教材图4.13#inc1udeintmain()intyear,1eap;printf(enteryear:);scanf(%d,&
2、year);if(year%4=0)if(year%100=0)if(year%400=0)Ieap=I;e1seIeap=O;e1se1eap=1;e1se1eap=0;if(1eap)printf(%dis,year);e1seprintf(%disnot,year);printf(a1eapyear.n);return0;)#inc1udeintmain()intyear,1eap;printf(enteryear:);scanf(%d,(fcyear);if(year%4=0)if(year%100=0)if(year%400=0)Ieap=I;e1seIeap=O;e1se1eap=
3、1;e1seIeap=O;if(1eap)printf(%dis,year);e1seprintf(%disnot,year);printf(a1eapyear.n);return0;)#inc1udeintmain()intyear,1eap;printf(enteryear:);scanf(%d,feyear);if(year%4=0)if(year%100=0)if(year%400=0)1eap=1;e1seIeap=O;e1se1eap=1;e1seIeap=O;if(1eap)printf(,%dis,year);e1seprintf(%disnot,year);printf(a1
4、eapyear.n);return0;)#inc1udeintmain()(intyear,1eap;printf(enteryear:);scanf(%d,(feyear);if(year%4=0)if(year%100=0)if(year%400=0)Ieap=I;e1seIeap=O;e1se1eap=1;e1seIeap=O;if(1eap)printf(,%dis,year);e1seprintf(%disnot,year);printf(a1eapyear.n);return0;例4.9求方程的解。#inc1ude#inc1udeintmain()(doub1ea,b,c,disc
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 程序设计 教案 112 课时 选择 结构 综合 例题