用phython写出a和b中至少有一个小于c表达式
时间: 2023-05-21 10:02:19 浏览: 304
TimerAlarm:一个带有声音和视觉警报的微型计时器。-开源
可以使用以下代码实现:
a = 5
b = 7
c = 6
if a < c or b < c:
print("At least one of a and b is less than c")
else:
print("Neither a nor b is less than c")
阅读全文