c语言第五章(苏小红版)

上传人:仙*** 文档编号:243543095 上传时间:2024-09-25 格式:PPT 页数:56 大小:2.43MB
返回 下载 相关 举报
c语言第五章(苏小红版)_第1页
第1页 / 共56页
c语言第五章(苏小红版)_第2页
第2页 / 共56页
c语言第五章(苏小红版)_第3页
第3页 / 共56页
点击查看更多>>
资源描述
Click to edit Master title style,Click to edit Master text styles,Second level,Third level,Fourth level,Fifth level,2024/9/25,56,/56,第,5,章 选择控制结构,哈尔滨工业大学,计算机科学与技术学院,苏小红,sxh,本章学习内容,算法的描述方法,用于单分支控制的,if,语句,用于双分支控制的,if-else,语句,用于多路选择的,switch,语句,break,语句在,switch,语句中的作用,关系运算符,条件运算符,逻辑运算符,程序测试,生活中的问题求解:,Problem:,烤蛋糕(,Baking a Cake,),How to solve:,Start,将烤箱预热,准备一个盘子,在盘子上抹上一些黄油,将面粉、鸡蛋、糖和香精混合在一起搅拌均匀,将搅拌好的面粉团放在盘子上,将盘子放到烤箱内,End,5.1,生活中与计算机中的问题求解 (,Problem Solving Process,),分治策略,(,Divide and Conquer Strategy,),Problem:,准备早餐(,Prepare a Breakfast,),1.Start,2.,准备早餐,3.End,1. Start,2.,准备早餐,2.1,准备一个金枪鱼三明治,2.2,准备一些薯条,2.3,冲一杯咖啡,3. End,分治策略,(,Divide and Conquer Strategy,),1. Start,2.,准备早餐,2.1,准备一个金枪鱼三明治,2.1.1,拿来两片面包,2.1.2,准备一些金枪鱼酱,2.2,准备一些薯片,2.3,冲一杯咖啡,3. End,分治策略,(,Divide and Conquer Strategy,),1. Start,2.,准备早餐,2.1,准备一个金枪鱼三明治,2.1.1,拿来两片面包,2.1.2,准备一些金枪鱼酱,2.2,准备一些薯片,2.2.1,将土豆切成片,2.2.2,油炸这些土豆片,2.3,冲一杯咖啡,3. End,分治策略,(,Divide and Conquer Strategy,),分治策略,(,Divide and Conquer Strategy,),1. Start,2.,准备早餐,2.1,准备一个金枪鱼三明治,2.1.1,拿来两片面包,2.1.2,准备一些金枪鱼酱,2.2,准备一些薯片,2.2.1,将土豆切成片,2.2.2,油炸这些土豆片,2.3,冲一杯咖啡,2.3.1,烧些开水放入杯中,2.3.2,在水杯中加入一些咖啡和糖,3. End,5.2,算法的概念,及其描述方法,面向对象程序,=,对象,+,消息,面向过程的程序,=,数据结构,+,算法,计算机中的算法,(,Algorithm,),为解决一个具体问题而采取的、确定的、有限的操作步骤,仅指计算机能执行的算法,A specific and step-by-step set of instructions for carrying out a procedure or solving a problem, usually with the requirement that the procedure terminate at some point,5.2,算法的概念,及其描述方法,算法的特性,有穷性,在合理的时间内完成,确定性,无歧义,如果,x,0,,则输出,Yes,;,如果,x,0,,则输出,No,有效性,能有效执行,负数开平方,没有输入或有多个输入,有一个或多个输出,5.2,算法的概念,及其描述方法,算法的描述方法,自然语言描述,传统流程图(,Flowchart,),在,1966,年,,Bohra,与,Jacopini,提出,N-S,结构化流程图,1973,年,美国学者,I.Nassi,和,B.Shneiderman,提出,伪码(,Pseudocode,)表示,流程图,(,Flowchart,),Flowchart represents algorithm graphically.,Start/End,Symbol,Semantic,Process,Input/Output,Test,Connector,Flow of activities,计算机中的问题求解过程,Example,:买苹果,计算价钱,Calculate and display the price of a number of apples if the quantity in kg and price per kg are given.,quantity,pricePerkg,price,price = quantity * pricePerkg,Input,Process,Output,First identify the input and output of the problem.,顺序结构(,Sequence,Structure,),给变量赋值,赋值表达式语句,赋值表达式,;,price = quantity*pricePerkg;,输入输出数据,标准库函数,调用语句,scanf(%d, ,printf(%d, price);,A,B,C,【,例,5.1】,计算两整数的最大值,num1,num2,max,?,Input,Process,Output,if - else,Single Selection,Double Selection,Multiple Selection,if,if - else - if,选择结构(分支结构),(,Selection Structure,),5.3,关系运算符与关系表达式,Relational,Operation,Description,Examples of Expression,Value,Less than,6 9,1 (true),=,Less than or equal to,5 ,Greater than,2 6,0 (false),=,Greater than or equal to,9 = 5,1 (true),=,Equal to,7 = 5,0 (false),!=,Not equal to,6 != 5,1 (true),5.4,用于,单分支,控制的条件语句,(,Single,Selection,),Step a,condition,Step m,Step n,Step x,true,false,step a,condition,step m,step n,step b,true,false,Pseudocode Structure,step a,if ,start,step m,step n,end_if,step b,if,Statement,The structure is similar to single selection (flowchart),Syntax:,if,(expression),statement;,or,if,(expression),statement1;,statement2;,复合语句,compound statement,被当做一条语句看待,表达式非,0,为真,if,Statement,The structure is similar to single selection (flowchart),Syntax:,if,(expression),statement;,or,if,(expression),statement1;,statement2;,Dont forget the,braces,!,Dont forget the,parentheses,!,#include ,main(),int a, b, max;,printf(Input a,b:);,scanf(%d,%d, ,if (a b)max = a;,if (a b?,max, b,max, a,Start,End,【,例,5.2】,计算两整数的最大值,scanf(%d,%d, ,if (a b),max = a;,else,max = b;,Turn Flowchart to C Program,No,Yes,Input a and b,Output max,a b?,max, b,max, a,Start,End,【,例,5.2】,计算两整数的最大值,printf(max = %dn, max);,#include ,main(),int a, b, max;,printf(Input a, b:);,scanf(%d,%d, ,if,(a b),max = a;,else,max = b;,printf(max = %d, max);,if,(a b),max = a;,if,(a b),max = a;,else,max = b;,printf(max = %d, max);,max = a b ? a : b;,表达式,1 ?,表达式,2 :,表达式,3,5.6,条件运算符和条件表达式,【,例,5.3】,5.7,用于,多分支,控制的条件语句(,Multiple Selection,),Multi-way,if,Step a,if,(,expression1,),Step m,if,(,expression2,),Step n,Step z,Step a,expression1,Step m,Step n,Step z,true,false,expression2,true,false,Step a,expression1,Step m,Step n,Step z,true,false,expression2,true,false,5.7,用于,多分支控制,的条件语句(,Multiple Selection,),Cascaded,if,Step a,if,(,expression1,),Step m,else if,(,expression2,),Step n,else,Step x,Step z,Step a,expression1,Step m,Step n,Step z,true,false,expression2,true,false,Step x,Step a,expression1,Step m,Step n,Step z,true,false,expression2,true,false,Step x,5.8,用于多路选择的,switch,语句,The structure is similar to multiple selection (flowchart),switch,(,expression,),case,value1,:,statement1;,break;,case,value2,:,statement2;,break;,default,:,statementX;,break;,Dont forget the braces !,Dont forget the colons !,Dont forget the blank !,Important Rule !,switch,(,expression,),case,value1,:,statement1;,break;,case,value2,:,statement2;,break;,default,:,statementX;,break;,Must be,int,or,char,!,5.8,用于多路选择的,switch,语句,注意!,Example,:,switch (month) ,case 1:,printf(Januaryn);,break;,case 2:,printf(Februaryn);,break;,case 3:,printf(Marchn);,break;,default:,printf(Othersn);,break;,printf(End);,Assume month = 1, so ,this step will be executed. Later ,case,is terminated here. Jump to ,January,_,January,End _,5.8,用于多路选择的,switch,语句,Example,:,switch (month) ,case 1:,printf(Januaryn);,break;,case 2:,printf(Februaryn);,break;,case 3:,printf(Marchn);,break;,default:,printf(Othersn);,break;,printf(End);,this step will be executed. Later ,March,_,March,End _,Assume month = 3, so ,case,is terminated here. Jump to ,5.8,用于多路选择的,switch,语句,Example,:,switch (month) ,case 1:,printf(Januaryn);,break;,case 2:,printf(Februaryn);,break;,case 3:,printf(Marchn);,break;,default:,printf(Othersn);,break;,printf(End);,Nowwhat will happen if this,break,is taken out from the program?,5.8,用于多路选择的,switch,语句,Example,:,switch (month) ,case 1:,printf(Januaryn);,break;,case 2:,printf(Februaryn);,case 3:,printf(Marchn);,break;,default:,printf(Othersn);,break;,printf(End);,No more !,5.8,用于多路选择的,switch,语句,Example,:,switch (month) ,case 1:,printf(Januaryn);,break;,case 2:,printf(Februaryn);,case 3:,printf(Marchn);,break;,default:,printf(Othersn);,break;,printf(End);,this step will be executed. Later ,February,_,March,_,Assume month = 2, so ,case,is terminated here. Jump to ,End _,execution continues. Thus, this step is executed . So ,5.8,用于多路选择的,switch,语句,Example,:,switch (month) ,case 1:,printf(Januaryn);,break;,case 2:,printf(Februaryn);,case 3:,printf(Marchn);,break;,default:,printf(Othersn);,break;,printf(End);,Nowwhat will happen if these,break,s,are taken out from the program?,And if month = 1 ?,And if month = 34 ?,5.8,用于多路选择的,switch,语句,最好不省略,!,【,例,5.5】,计算器程序,编程设计一个简单的计算器程序,要求用户从键盘输入如下形式的表达式:,操作数,1,运算符,op,操作数,2,然后,计算并输出表达式的值,指定的运算符为,加(,+,),减(,-,),乘(,*,),除(,/,),main,(),int,data1, data2; /*,定义两个操作符*,/,char,op; /*,定义运算符*,/,printf(Please enter the expression:);,scanf(%d%c%d, /*,输入运算表达式*,/,switch,(op),case,+: /*,处理加法*,/,printf(%d + %d = %dn, data1, data2, data1 + data2);,break,;,case,-: /*,处理减法*,/,printf(%d - %d = %dn, data1, data2, data1 - data2);,break,;,case,*: /*,处理乘法*,/,printf(%d * %d = %dn, data1, data2, data1 * data2);,break,;,case,/: /*,处理除法*,/,if,(,0 = data2,),printf(Division by zero!n);,else,printf(%d/%d = %dn, data1, data2, data1/data2);,break,;,default,:,printf(Invalid operator! n);,【,例,5.5】,Why?,注释掉会怎样,?,思考题,语句,if(0=data2),的必要性,避免“除零错误”,1998,年,11,月,,科学美国人,杂志描述了美国导弹巡洋舰约克敦号上的一起事故,除零错导致军舰推进系统的关闭,为什么不用,if (data2 = 0),?,如果要求输入的算术表达式中的操作数和运算符之间可以加入任意多个空格符,那么程序如何修改?,main,(),int,data1, data2;,char,op;,printf(Please enter the expression:);,scanf(%d %c%d, ,/* %c,前有一个空格 *,/,switch,(op),case,+:,printf(%d + %d = %dn, data1, data2, data1 + data2);,break,;,case,-:,printf(%d - %d = %dn, data1, data2, data1 - data2);,break,;,case,*:,printf(%d * %d = %dn, data1, data2, data1 * data2);,break,;,case,/:,if,(,0 = data2,),printf(Division by zero!n);,else,printf(%d/%d = %dn, data1, data2, data1/data2);,break,;,default,:,printf(Invalid operator! n);,【,例,5.5】,空格,思考题,如果要求对浮点数进行运算,那么程序如何修改?,修改例,5.5,程序,使其能进行浮点数的算术运算,同时允许使用字符*、,x,与,X,作为乘号,并且允许输入的算术表达式中的操作数和运算符之间加入任意多个空格符。,main,(),float,data1, data2;,char,op;,printf(Please enter the expression:);,scanf(%,f,%c%,f, ,switch,(op),case,+:,printf(%,f,+ %,f,= %,f,n, data1, data2, data1 + data2);,break,;,case,-:,printf(%,f,- %,f,= %,f,n, data1, data2, data1 - data2);,break,;,case,*:,case x:,case X:,printf(%,f,* %,f,= %,f,n, data1, data2, data1 * data2);,break,;,case,/:,if (fabs(data2) = A) & (ch = 1) & (b,+,= 5),( 0 = 1 ),& ( b,+,= 5 ),0 &,( b,+,= 5 ),0,a,0,b,5,c,15,d,17,复合表达式,(,Compound Expression,),的值,尽量使用最少的操作数来确定表达式的值,这就意味着表达式中的某些操作数可能不会被计算,5.10,本章扩充内容,测试的主要方式,给定特定的输入,运行被测软件,检查软件的输出是否与预期结果一致,测试用例的选取方法,尽量覆盖所有分支,减少重复覆盖,测试的目的,通过运行测试用例找出软件中的,Bug,成功的测试在于发现迄今为止尚未发现的,Bug,测试人员的主要任务是站在使用者的角度,通过不断使用和攻击,尽可能多地找出,Bug,测试的过程就像黑客的攻击过程,专门找软件漏洞,5.10,本章扩充内容,采用测试用例,通过运行程序查找程序错误的方法,实质是一种抽样检查,彻底的测试是不可能的,彻底的测试不现实,要考虑时间、费用等限制,不允许无休止的测试,测试只能证明程序有错,不能证明程序无错,E.W.Dijkstra,测试能提高软件质量,但提高软件质量不能依赖于测试,软件测试方法的分类,白盒测试(结构测试),在完全了解程序的结构和处理过程的情况下,按照程序内部的逻辑测试程序,检验程序中的每条逻辑路径是否都能按预定要求正确工作,主要用于测试的早期,黑盒测试(功能测试),把系统看成一个黑盒子,不考虑程序内部的逻辑结构和处理过程,只根据需求规格说明书的要求,设计测试用例,检查程序的功能是否符合它的功能说明,主要用于测试的后期,通常结合使用选择有限数量的重要路径进行白盒测试,对重要的功能需求进行黑盒测试,#,include,#,include,main(),float,a, b, c;,printf(Input the three edge length:);,scanf(%f, %f, %f, ,if,(a+bc & b+ca & a+cb)/*,三角形的基本条件*,/,if,(a=b | b=c | c=a),printf(,等腰三角形,);,else,if,(a*a+b*b=c*c | a*a+c*c=b*b | b*b+c*c=a*a),printf(,直角三角形,);,else,printf(,一般三角形,);,else,printf(,不是三角形,n);,错在哪里?,【,例,5.7】,判断三角形的类型,【,例,5.7】,判断三角形的类型,一般三角形,不是三角形,等边,等腰,直角,等腰,直角,有交叉关系的用并列的,if,非此即彼的用,if-else,注意!,main(),float,a, b, c;,int,flag = 1;,if,(a+bc & b+ca & a+cb)/*,三角形的基本条件*,/,if,(a=b | b=c | c=a),printf(,等腰,);,flag = 0;,if,(a*a+b*b=c*c | a*a+c*c=b*b | b*b+c*c=a*a),printf(,直角,);,flag = 0;,if (flag),printf(,一般,);,printf(,三角形,n);,else,printf(,不是三角形,n);,【,例,5.7】,main(),if,(a+bc & b+ca & a+cb) /*,三角形的基本条件*,/,if (a=b & b=c & c=a),printf(,等边,);,flag = 0;,if (a=b | b=c | c=a),printf(,等腰,);,flag = 0;,if,(a*a+b*b=c*c | a*a+c*c=b*b | b*b+c*c=a*a),printf(,直角,);,flag = 0;,if,(flag),printf(,一般,);,printf(,三角形,n);,else,printf(,不是三角形,n);,【,例,5.7】,错在哪里?,main(),if,(a+bc & b+ca & a+cb) /*,三角形的基本条件*,/,if,(a=b & b=c & c=a),printf(,等边,);,flag = 0;,else if,(a=b | b=c | c=a),printf(,等腰,);,flag = 0;,if,(a*a+b*b=c*c | a*a+c*c=b*b | b*b+c*c=a*a),printf(,直角,);,flag = 0;,if,(flag),printf(,一般,);,printf(,三角形,n);,else,printf(,不是三角形,n);,【,例,5.7】,main(),if,(a+bc & b+ca & a+cb) /*,三角形的基本条件*,/,if,(a=b | b=c | c=a),printf(,等腰,);,flag = 0;,else if,(a=b & b=c & c=a),printf(,等边,);,flag = 0;,if,(a*a+b*b=c*c | a*a+c*c=b*b | b*b+c*c=a*a),printf(,直角,);,flag = 0;,if,(flag),printf(,一般,);,printf(,三角形,n);,else,printf(,不是三角形,n);,等腰在先,等边在后,是否可以,?,【,例,5.7】,Questions and answers,
展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 图纸专区 > 小学资料


copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


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