2024年10月20日
摘要: a=input("请输入一个数a")b=input("请输入一个数b")a=float(a) #将数据转换为浮点型b=float(b) #将数据转换为浮点型c=a+b #定义c=a+bprint("输入的数为c",c)if a<b: c=b else: c=aprint("输出的数为c",c)w=2 阅读全文
posted @ 2024-10-20 19:09 蓯芯開矢 阅读(11) 评论(0) 推荐(0) 编辑