#2
沈和2023-10-27 19:21
|
程序代码:
def coa (a,b,c,d,e):
if 80<a<100 and 80<b<100 and 80<c<100 and 80<d<100 and 80<e<100:
print('上选品')
if 80<a<100 and 80<b<100 and 80<c<100 : # a b c d e 其中3样有 80< <100
print('次选品')
if 0<a<79 and 0<a<79 or 0<a<79 and 0<a<79 or 0<a<79 and 0<a<79 :
print('下选品')
coa (85,73,65,82,88) # 次选品 只要其中3样有 80< abcde <100 次选品
coa (85,73,82,30,81) # 次选品 只要其中3样有 80< abcde <100 次选品
coa (85,73,82,81,20) # 次选品 只要其中3样有 80< abcde <100 次选品
if 80<a<100 and 80<b<100 and 80<c<100 and 80<d<100 and 80<e<100:
print('上选品')
if 80<a<100 and 80<b<100 and 80<c<100 : # a b c d e 其中3样有 80< <100
print('次选品')
if 0<a<79 and 0<a<79 or 0<a<79 and 0<a<79 or 0<a<79 and 0<a<79 :
print('下选品')
coa (85,73,65,82,88) # 次选品 只要其中3样有 80< abcde <100 次选品
coa (85,73,82,30,81) # 次选品 只要其中3样有 80< abcde <100 次选品
coa (85,73,82,81,20) # 次选品 只要其中3样有 80< abcde <100 次选品
[此贴子已经被作者于2023-10-27 19:01编辑过]