摘要: 1 """ 2 a = int(input('a = ')) 3 b = int(input('b = ')) 4 print('%d + %d = %d' % (a, b, a + b)) 5 print("%d / %d = %f" % (a, b, a / b)) 6 print('%d // 阅读全文
posted @ 2019-07-23 16:21 Cruel_King 阅读(208) 评论(0) 推荐(0) 编辑