有一個簡單的方法,直接用語法說明,如下: Condition1=….. Condition2=….. Condition3=….. Condition4=….. if condition1=true then value1=1 else value1=0; if condition2=true then value2=1 else value1=0; if condition3=true then value3=1 else value1=0; if condition4=true then value4=1 else value1=0; if value1+value2+value3+ value4>=3 then (進場) 4個條件中任3個符合即進場,重點是不限定哪3個條件符合,且4個都符合也要進場,用以上語法表達雖然感覺有點tricky,不過簡單實用,同理類推,m個條件中任n個以上符合即進場也可以比照辦理。