python123答案选择结构

发布时间:2024-12-21 18:59

笔记的结构化管理,如问题-答案-补充 #生活技巧# #学习技巧# #笔记技巧#

最新推荐文章于 2024-04-21 19:21:20 发布

走路带风的何小璐 于 2021-02-09 14:58:01 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

Python实验3选择结构程序设计

实验3 选择结构程序设计(续) 【实验目的】 1.掌握分支条件语句的使用。 2.掌握分支嵌套语句的使用。 【实验内容】 1. 通过()函数任意输入三条边长,经过简单的计算后,判断三条边长能否构成三角形,并确定是类型的三角形,如(等边,等腰,一般三角形)。 a=(“Please the length of a:“) b=(“Please the length of b:“) c=(“Please the length of c:“) if a+b>c and a+c>b and b+c>a: if a==b==c: print “This is an equilateral triangle.“ if a==b or a==c or b==c: print “This is an isosceles triangle.“ if a!=b!=c: print “This is a scalene triangle.“ else: print “These lengths can not a triangle.“ 2. 密码登录程序。要求:建立一个登录窗口,要求输入帐号和密码。设定用户名为”zhangshan”,密码为“Python123”;若用户名正确,密码正确,则显示“Zhangshan先生,欢迎你!”;如果用户名错误,则显示“用户名错误,请重新输入!”;若密码不正确,显示“对不起,密码错误,无法登录!”。 x=raw_(“User:“) y=raw_(“Password:“) if x==“zhangshan“ and y==“Python123“: print “Welcome,Mr.Zhangshan!“ if x==“zhangshan“ and y!=“Python123“: print “Wrong password.No right to log-in.“ while x!=“zhangshan“ and y==“Python123“: x=raw_(“Wrong user s name.Please enter again:“) if x==“zhangshan“: print “Zhangshan先生,欢迎你!“ 3. 设有三个变量a,b,c,分别对三个变量赋值,并对三个变量进行排序。如a=5,b=7,c=6,则排序结果为b>c>a。 a=(“Assign a a value:“) b=(“Assign b a value:“) c=(“Assign c a value:“) if a>b>c: print “a>b>c“ if a>c>b: print “a>c>b“ if b>a>c: print “b>a>c“ if b>c>a: print “b>c>a“ if c>a>b: print “c>a>b“ if c>b>a: print “c>b>a“ 4. 计算一元二次方程 ax2+bx+c 的根是公式。因为负数的平方根是虚的,所以可以使用平方根里面的表达式(称为差别式)先进地判别,检查根型。如果判别式是负数,根是虚的。如果判别式是零,只有一个根;如果判别式是正的,有两个根。写一个程序,使用二次方根式得到实根,即忽略虚根。使用判别式确定有一个根或两个根,然后显示出答案。 print “a*x**2+b*x+c=0“ a=(“ a :“) b=(“ b :“) c=(“ c :“) if b**2-4*a*c>0: x1=-b+(b**2-4*a*c)**0.5/(2*a) x2=-b-(b**2-4*a*c)**0.5/(2*a) print “The number of the root of equation:2“,x1,x2 if b**2-4*a*c==0: x0=-b/(2*a) print “The number of the root of equation:1“,x0 if b**2-4*a*c<0: print “Non-real complex roots.“

网址:python123答案选择结构 https://www.yuejiaxmz.com/news/view/533931

相关内容

python123的答案
晶体结构是 晶体结构= +
2021网络安全知识竞赛题库及答案(选择题+判断题)
2021知到答案【 生活的情致
外国文学经典作品选讲学习通超星期末考试答案章节答案2024年.docx
职场压力解决方案试题答案[精选].doc
2021知到答案【 现代生活的文化解读】智慧树网课章节测试答案
榉木制儿童推拉床:四层结构,家庭卧室好选择
洗菜盆水龙头结构图
结构化面试培训.pptx

随便看看