题型:单选题 题类: 难易度:普通
浙江省温州市十校联合体2023-2024学年高二上学期信息技术期中考试试卷
某同学根据输入的坐标点(x,y)来判断该坐标点的位置所在。以下实现该分类的Python程序段中不正确的是( )
result="象限"
if x==0 or y==0:
result="数轴"
if x==0 and y==0:
result="原点"
B、if x!=0 and y!=0:result="象限"
else:
if x==0 or y==0:
result="数轴"
else:
result="原点"
C、if x!=0 and y!=0:result="象限"
elif x==0 and y==0:
result="原点"
else:
result="数轴"
D、result="象限"if x==0 and y==0:
result="原点"
elif x==0 or y==0:
result="数轴"
试题篮