C语言编程学习课件 (19).pdf

上传人:刘静 文档编号:57975674 上传时间:2022-11-06 格式:PDF 页数:7 大小:971.62KB
返回 下载 相关 举报
C语言编程学习课件 (19).pdf_第1页
第1页 / 共7页
C语言编程学习课件 (19).pdf_第2页
第2页 / 共7页
点击查看更多>>
资源描述

《C语言编程学习课件 (19).pdf》由会员分享,可在线阅读,更多相关《C语言编程学习课件 (19).pdf(7页珍藏版)》请在得力文库 - 分享文档赚钱的网站上搜索。

1、Programming In CProgramming In C Nested if statement When a selection structure contains another selection structure,it is called a nested selection structure.the pairing relationship between if and else if(c1)if(c2)statement 1 else statement 2 else if(c3)statement 3 else statement 4 The C programmi

2、ng language stipulates that else is always paired with the nearest and unpaired if above it.Programming In CProgramming In C exercise:what value of x after code run?intint a=a=1 1,b=,b=3 3,c=,c=5 5,d=,d=4 4;ifif(ab)(ab)ifif(cd)(cd)x=x=1 1;elseelse ifif(ac)(ac)ifif(bd)(b=0)else printf(方程无实根!n);if (b*

3、b-4*a*c)0)x1=(-b+sqrt(b*b-4*a*c)/(2*a);x2=(-b-sqrt(b*b-4*a*c)/(2*a);printf(两个不等的实根:x1=%.2f x2=%.2fn,x1,x2);else x1=-b/(2*a);printf(两个相等的实根,x1=x2=%.2fn,x1);Programming In CProgramming In C void main()float a,b,c,x1,x2,delta;scanf(%f%f%f,&a,&b,&c);delta =b*b-4*a*c;/好风格 if (delta=0)if (delta0)x1=(-b+sq

4、rt(delta)/(2*a);x2=(-b-sqrt(delta)/(2*a);printf(两个不等的实根:x1=%.2f x2=%.2fn,x1,x2);else x1=-b/(2*a);printf(两个相等的实根,x1=x2=%.2fn,x1);else printf(方程无实根!n);Improved code Programming In CProgramming In C efficiency Improved code Prevent mistakes Improve readability Improve maintainability Programming In CProgramming In C

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 大学资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知得利文库网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号-8 |  经营许可证:黑B2-20190332号 |   黑公网安备:91230400333293403D

© 2020-2023 www.deliwenku.com 得利文库. All Rights Reserved 黑龙江转换宝科技有限公司 

黑龙江省互联网违法和不良信息举报
举报电话:0468-3380021 邮箱:hgswwxb@163.com