Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用布尔表达式设置一个规则,即当 X 在一个范围内(6.0 -8.0)然后是黄色时,任何低于绿色和高于红色的东西。非常感谢您的帮助
您可以使用简单的if语句来完成此操作(当然,确切的语法会因语言而异):
if
if X < 6.0 then color = green else if X <= 8.0 then color = yellow else color = red end
你的意思是这样吗?
if(X<6) { color=green; } else { if(x<=8){ color=yellow; }else{ color=red; } }