当前位置:   article > 正文

python基础——第四章作业_头歌python第四章答案

头歌python第四章答案

1、pycharm安装,老师帮忙调试的。
2、

score = int(input("请输入成绩:"))
if score<60:
	print("不及格")
elif 60<=score<80:
	print("及格")
elif 80<=score<90:
	print("良好")
elif 90<=score<=100:
	print("优秀")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

3、已知点的坐标(x,y),判断其所在的象限

x = int(input("请输入x坐标"))
y = int(input("请输入y坐标"))

if(x==0 and y==0):print("原点")
elif(x==0):print("y轴")
elif(y==0):print("x轴")
elif(x>0 and y>0):print("第一象限")
elif(x<0 and y>0):print("第二象限")
elif(x<0 and y<0):print("第三象限")
else:print("第四象限")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

4、

score = int(input("请输入一个在0-100之间的数字:"))
grade = ""

if score>100 or score<0:
    
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/458919
推荐阅读
相关标签
  

闽ICP备14008679号