lesson 5 C语言控制结构-选择2.ppt

  1. 1、本文档共20页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
lesson 5 C语言控制结构-选择2

Lesson 5 C语言的基本控制结构 * 学习目标: 3 1 学会使用选择结构程序处理问题 * 3 多路选择 2 问题回顾: 例1:通过键盘输入的坐标点,判断该坐标点处于第几象限 。 是4路选择! * 3 多路选择 2 一般形式为: if(表达式1) 语句1; else if (表达式2) 语句2; … else if (表达式n) 语句n; 【else 语句n+1;】 if…else if 语句 和if…else的区别: 1、多条件 2、else 连有if 1、else可以省略 2、必须在最后 3、前面都不满足时执行 * 3 多路选择 2 语句n+1 假 表达式1 语句1 真 表达式2 语句2 假 真 表达式n 语句n 假 真 执行过程 * 3 多路选择 4 #include stdio.h int main( ) { int x, y; printf(\nEnter 2 integers:); scanf( %d%d, x, y ); if ( x 0 y 0) printf(I quadrant \n); else if ( x 0 y 0 ) printf( IV quadrant \n ); else if ( x 0 y 0 ) printf(II quadrant \n); else if ( x 0 y 0 ) printf(III quadrant \n); return 0; } 使用if…else if语句实现 注意比较 lesson5_01.c * 3 多路选择 2 例2:铁路托运行李,从甲地到乙地,规定每张客标托运费计算方法是: 行李重量不超过50公斤时,每公斤0.5元,超过50公斤超过100公斤时,其超过部分每公斤1.5元,超过100公斤时,其超过部分每公斤2元。请计算并输出托运的费用。 * 3 多路选择 2 分析:设行李重量为weight公斤,应付运费为money元,则运费公式为: ??????当weight =50 时 则 money=0.5*weight 当 50 weight =100 时, 则 money=0.5*50+1.5*(weight-50) ??????当 weight 100 时,则 则 money=0.5*50+1.5*50+2*(weight-100) * 3 多路选择 4 #include stdio.h int main( ) { float weight, money; printf(“\n请输入重量:); scanf(%f, weight ); if ( weight=50) money=0.5*weight; else if ( weight=100 ) money=0.5*50+1.5*(weight-50); else money=0.5*50+1.5*50+2*(weight-100); printf(“重量为%f的货物,运费为%f”,weight,money); return 0; } 为什么不需要写成: weight50weight=100 lesson5_02.c * 3 课堂练习 3 使用if…else if语句编写程序实现下面的分段函数 1 (x0) f(x)= 0 (x=0) -1 (x0) * 3 多路选择 3 例3:编写程序实现一个简单的运算器:从键盘输入一个只含有一个运算符号的式子,在屏幕显示其运算的结果 例如:输入12+3 输出 15 输入12-4 输出8 * #include stdio.h int main() { return 0; } float x=0,y=0,result=0; char op; scanf(“%f%c%f”,x,op,y); if(op==‘+’)result=x+y; else if(op==‘-’)result=x-y; else if(op==‘*’)result=x*y; else if

文档评论(0)

sh4125733 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档