Understanding a boolean expression -


i trying set rule using boolean expression when x within range (6.0 -8.0) yellow, below green , above red. appreciated

you mean this?

if(x<6) { color=green; }  else { if(x<=8){ color=yellow; }else{ color=red; } } 

Comments

Popular posts from this blog

Need help in packaging app using TideSDK on Windows -

c++ - boost interprocess mutex in managed_shared_memory -