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
Post a Comment