FUNCTION ClassifyZone(score):
  IF score >= 0.70:
    RETURN "White Zone"
  ELSE IF score >= 0.50:
    RETURN "Green Zone"
  ELSE IF score >= 0.30:
    RETURN "Yellow Zone"
  ELSE IF score >= 0.10:
    RETURN "Red Zone"
  ELSE IF score >= -0.10:
    RETURN "Black Zone"
Beri Komentar
Belum ada komentar. Jadilah yang pertama untuk memberikan komentar!