fork download
  1. class Test
  2. {
  3.  
  4. public static void main( String[] args )
  5.  
  6. {
  7.  
  8. double height = 5.5;
  9.  
  10. if(height-- >= 5.0)
  11. System.out.print("tall "+height);
  12. if(--height >= 4.0)
  13. System.out.print("average ");
  14. if(height-- >= 3.0)
  15. System.out.print("short "+height);
  16. else
  17. System.out.print("very short ");
  18. }
  19.  
  20. }
Success #stdin #stdout 0.04s 4386816KB
stdin
Standard input is empty
stdout
tall 4.5short 2.5