fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. float Livello_misurato = 0.6;
  5. float Start_1 = 2.0;
  6. float Stop_1 = 0.6;
  7. if (Livello_misurato >= Start_1){
  8. printf("RUN");
  9. }
  10. if (Livello_misurato <= Stop_1){
  11. printf("STOP");
  12. }
  13. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
STOP