Guest User

Untitled

a guest
Mar 7th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QBasic 0.50 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
  10.     PRINT "Disqualified! Judge 1 gave a score < 3!"
  11. ELSE
  12.     IF score2 < 3 THEN
  13.         PRINT "Disqualified! Judge 2 gave a score < 3!"
  14.     ELSE
  15.         IF score3 < 3 THEN
  16.             PRINT "Disqualified! Judge 3 gave a score < 3!"
  17.         ELSE
  18.             ' Create Average
  19.             ' Check Average
  20.             ' Print the appropriate message
  21.         END IF
  22.     END IF
  23. END IF
Add Comment
Please, Sign In to add comment