1、实验三 选择结构程序设计一、实验目的1、 掌握建立和执行 M 文件的方法。2、 掌握利用 if 语句实现选择结构的方法。3、 掌握利用 switch 语句实现多分支选择结构的方法。4、 掌握 try 语句的使用。二、实验内容1、 求分段函数的值。用 if 语句实现,分别输出 x=-5.0,3.0,1.0,2.0,2.5,3.0,5.0 时的 y 值。x=input(please input the value of x);if x=0if s=90switch floor(score/10)case9,10rank=A;case8rank=B;case7rank=C;case6rank=D;c
2、ase num2cell(0:5)rank=E;otherwiserank=wrong score;endrank=rank cccplease input the score:-3rank =wrong score cccplease input the score:456rank =wrong score cccplease input the score:94rank =A cccplease input the score:45rank =E3、 硅谷公司员工的工资计算方法如下:(1) 、工作时数超过 120 小时者,超过部分加发 15%。(2) 、工作时数低于 60 小时者,扣发 7
3、00 元。(3) 、其余按每小时 84 元计发。试编程按输入的工号和该号员工的工时数,计算应发工资。number=input(please input work number:);h=input(please input work hours:);if h120wage=120*84+(h-120)*84*1.15;elseif h dddplease input work number:01please input work hours:74wage =6216 dddplease input work number:02please input work hours:53wage =375
4、2 dddplease input work number:03please input work hours:135wage =115294、 设计程序,完成两位数的加、减、乘、除四则运算,即产生两个两位随机整数,再输入一个运算符号,做相应的运算,并显示相应的结果。x=input(please input a sign:,s);x1=round(rand(1)*90+10);x2=round(rand(1)*90+10);if x=+answer=x1+x2;elseif x=-answer=x1-x2;elseif x=*answer=x1*x2;elseif x=/answer=x1/x
5、2;endx1x2answer eeeplease input a sign:+x1 =83x2 =11answer =94 eeeplease input a sign:-x1 =23x2 =28answer =-55、 建立 56 矩阵,要求输出矩阵第 n 行元素。当 n 值超过矩阵的行数时,自动转为输出矩阵的最后一行元素,并给出出错信息。x=rand(5,6);n=input(please input n:);if n0y=x(5,:);disp(wrong n);elseif n eeeplease input n:4y =0.9383 0.2789 0.4787 0.9222 0.9238 0.5945 eeeplease input n:7wrong ny =0.4397 0.1121 0.9442 0.5744 0.1443 0.3099 eeeplease input n:-3y =wrong n