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

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -