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個以上符合即進場也可以比照辦理。
程式碼的部分應該有誤
回覆刪除if condition2=true then value2=1 else value1=0;
例如這段,在else的部分應該是value2=0才對吧
其他幾段也有類似的問題