试题详情

假设从键盘输入的值是20,以下程序的输出结果是( )。 age=input(" please input your age:" ) if age>=18: print("已成年! ") else: print("未成年! ")

A已成年!

BB

CC

DD