1 class Control { 2 void control(float f) { 3 for (int i = 0; i < 5; i++) { 4 if (f >= 0) { 5 f += 1; 6 } 7 } 8 } 9 }