阅读下面代码,假设键盘输入5,正确的输出是( )
age =int(input(“请输入你的年龄:“)) if age>10: print("你已经是大朋友啦") else: print("你还是个小朋友哦")
你已经是大朋友啦
你还是个小朋友哦
程序报错
什么也不会输出