百鸡百钱问题,100块钱买100只鸡
条件:公鸡5块一只,母鸡3块一只,鸡仔1块三只,问可买公鸡,母鸡,鸡仔各多少只?
实现代码:
x=100
for y in range(101):
x=100-y
for z in range(101):
if x<0 :break
if x+y+z==100 and (5*x) + (3*y) + (z/3)==100 :
print(x,y,z)
x-=1
鸡兔同笼问题
条件:头35只,脚94只,问鸡多少只,兔多少只?
t=35
for j in range(36):
if j + t ==35 and (2*j)+(4*t)==94:
print(j,t)
t-=1