```python a = int(input("请输入第一个整数a: ")) b = int(input("请输入第二个整数b: ")) c = int(input("请输入第三个整数c: ")) if a < b and a < c: print("最小值为:", a) elif b < a and b < c: print("最小值为:", b) else: print("最小值为:", c) ``` [2024-11-01 16:41:27 | AI写代码神器 | 176点数解答]