A. if x>yprint(x)elif y>zprint(y)print(z) B. if x>y:print(x)elif y>z:print(y)else:print(z) C. if x>y:print(x)elif x>y:print(y)else:print(z) D. if x>yprint(x)elif y>zprint(y)elseprint(z)
A. 优秀 B. 良好 C. 一般 D. 不合格
A. 对 B. 错