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(X<6) { color=green; } else { if(x<=8){ color=yellow; }else{ color=red; } }
これは簡単なifステートメントで実現できます (もちろん、正確な構文は言語によって異なります)。
if
if X < 6.0 then color = green else if X <= 8.0 then color = yellow else color = red end