网站大量收购闲置独家精品文档,联系QQ:2885784924

第十讲 编程.ppt

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

* * Lecture 4 程序 主讲:王永龙 临 沂 大 学 理 学 院 主要内容 2.顺序结构 3. 分支结构 4. 顺序结构 1.关系和逻辑运算符 5. 函数编写 3. 分支结构 (1) if 结构 % Script file: calc_roots_quad.m % %Purpose: % This program solves the roots of a %quadratic equation with the form %a*x^2+b*x+c=0, whether the roots are two %distinct real roots, two identical real roots, or %two complex roots. % %Records of revisions: %Date 2007-11-11 %Programmer: Wang Yong-Long %Description of change: original code % %Define variables: %a: coefficient of x^2 term of the equation %b: coefficient of x term of the equation %c: the constant term of the equation %s: discriminant (判别式) of the equation %image: the image part of the root %real: the real part of the root %x1: First root of the equation %x2: Second root of the equation. % %Prompt the user to enter the coefficients of %the equation disp(‘This program solves the roots of the quadratic’); disp(‘equation with the form a*x^2+b*x+c=0’); a=input(‘Enter the coefficient a: ‘); b=input(‘Enter the coefficient b: ‘); c=input(‘Enter the coefficient c: ‘); %Calculate the discriminant of the equation s=b^2-4*a*c; % %Solve the roots, depending on the value of the % discriminant s. if s0 %There are two real roots. x1=(-b-sqrt(s))/(2*a); x2=(-b+sqrt(s)/(2*a); disp(‘This equation has two real roots as:’) fprintf(‘x1=%f\n’,x1); fprintf(‘x2=%f\n’,x2); elseif s==0 %There are only single repeated real root. x1=(-b)/(2*a); disp(‘This equation has a single repeated root (two identical real roots) as:’); fprintf(‘x1=x2=%f\n’,x1); else %There are two complex roots. real=-b/(2*a); image=(sqrt(abs(s)))/(2*a); disp(‘This equation has two complex roots:’); fprintf(‘x1=%f-i*%f\n’, real, image); fprintf(‘x2=%f+i*%f\n’, real, image) end (2) switch 结构 编写一程序能够根据输入的学生成绩给出恰当评述。学生成绩分为五个等级:A (或 a), B (或 b), C (或 c), D (或 d), 和E (或 e)。根据这些等级,给出恰当评述。 % Script file: stud_subj_eval.m % % Purpose: %This program shows the record of %corresponding stude

文档评论(0)

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

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

1亿VIP精品文档

相关文档