题解 | #百钱买百鸡问题#
百钱买百鸡问题
https://www.nowcoder.com/practice/74c493f094304ea2bda37d0dc40dc85b
n = int(input()) r = [[0, 25, 75], [4, 18, 78], [8, 11, 81], [12, 4, 84]] for i in r: for j in i: print(j, end=' ') print()
百钱买百鸡问题
https://www.nowcoder.com/practice/74c493f094304ea2bda37d0dc40dc85b
n = int(input()) r = [[0, 25, 75], [4, 18, 78], [8, 11, 81], [12, 4, 84]] for i in r: for j in i: print(j, end=' ') print()
相关推荐