单选题

运行下方代码,输入 52 ,输出结果为?

height = int(input())
if height > 100:
    print("超高层建筑")
elif height > 50:
    print("高层建筑")
else:
    print("中层建筑")

A

超高层建筑

B

高层建筑

C

中层建筑

D

52

赣ICP备20007335号-2