从三枚硬币中找出一个不合格的硬币,不合格的硬币会超重,只有一架天平,写出伪代码
时间: 2024-04-11 10:28:07 浏览: 197
n枚硬币中找假币 其中一个为假
4星 · 用户满意度95%
当只有三枚硬币时,伪代码如下:
```
coin1 = 1
coin2 = 2
coin3 = 3
if coin1 > coin2:
if coin1 > coin3:
print("coin1 is the heavier coin")
else:
print("coin3 is the heavier coin")
elif coin2 > coin3:
print("coin2 is the heavier coin")
else:
print("coin3 is the heavier coin")
```
这段伪代码通过比较三枚硬币的重量,找出其中的较重硬币。
阅读全文