Guest User

Untitled

a guest
Mar 7th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QBasic 0.43 KB | None | 0 0
  1. DIM score1 AS STRING
  2. DIM score2 AS STRING
  3. DIM score3 AS STRING
  4.  
  5. INPUT "Judge 1 score:", score1
  6. INPUT "Judge 2 score:", score2
  7. INPUT "Judge 3 score:", score3
  8.  
  9. IF score1 = <3 THEN PRINT "Disqualified! Judge 1 gave a score < 3!"
  10.  
  11. ELSE
  12.     IF score2 = <3 THEN PRINT "Disqualified! Judge 2 gave a score < 3!"
  13.  
  14.     ELSE
  15.         IF score3 = <3 THEN PRINT "Disqualified! Judge 3 gave a score < 3!"
  16.  
  17.         ELSE
  18.  
  19.         END IF
  20.     END IF
  21. END IF
Add Comment
Please, Sign In to add comment