赞
踩
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("优秀")
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("第四象限")
4、
score = int(input("请输入一个在0-100之间的数字:"))
grade = ""
if score>100 or score<0:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。