I have an IF statement in QBASIC... yes... QBASIC...

I have been teaching someone to program (I decided this would be nice and easy to see how the syntax works).

...Anyway, I have this code:

CLS

start:
INPUT ">>", a$

PRINT a$
IF (INSTR(a$, "do you")) THEN
    IF (INSTR(a$, "like")) THEN
        IF (INSTR(a$, "cheese")) THEN PRINT "Yep, I like cheese":
        IF (INSTR(a$, "music")) THEN PRINT "Depends, which genre?": GOTO musicGenre
    ELSE IF (INSTR(a$, "hate")) THEN
            IF (INSTR(a$, "cheese")) THEN PRINT "No, I like cheese"
        END IF
    END IF
END IF


musicGenre:
INPUT ">>", m$
SELECT CASE (m$)
    CASE "pop"
        PRINT "..pop! lol, baa baa"
    CASE "rock"
        PRINT "Rock is ok"
END SELECT
GOTO start

But when I type "do you like cheese?" it seems to only reply "Yep, I like cheese" every other time...

Could anyone shed some light on this?

note:
"do you like music?" works every time...

note 2:
Screenshot of the output:
alt text

link|improve this question

3  
+1 I love QBASIC :D – halfdan Sep 16 '10 at 12:59
1  
What is the incorrect output you see when you input "do you like cheese?" and it doesn't say "Yep, I like cheese"? – Steven Sep 16 '10 at 13:01
What does it say when it doesn't say "Yep, I like cheese" as expected? Anything, or nothing? – Meff Sep 16 '10 at 13:02
Nothing it goes back to the input prompt. (cheers @halfdan) – Neurofluxation Sep 16 '10 at 13:03
InStr returns an index as far as I know... Are you sure that the value it returns on failure is evaluated as false? I don't know QBasic, but I did stuff in VB6... – apirogov Sep 16 '10 at 13:04
show 3 more comments
feedback

1 Answer

up vote 2 down vote accepted

Your code you provided appears correct.

Try one of the following:

  • If possible, send us a larger code sample. I'm guessing the error is outside the code you provided.
  • Output the input (a$) before the first IF to confirm your code will be working with the expected input.
  • In most languages, FALSE is zero and true is anything else. However, you may want to be more explicit with the following IF (INSTR(a$) > 0).

EDIT: You should put a goto start on any cheese result. Otherwise, it's going to the musicGenre code.

link|improve this answer
Hey, cheers very much. a$ outputs as "do you like cheese" however, it won't even output the a$ afterwards.. like.. the output is right the first time, then it is empty (including the outputted a$) the second time, then it's correct the third. – Neurofluxation Sep 16 '10 at 13:21
and I've added the rest of my code to the question – Neurofluxation Sep 16 '10 at 13:21
see my answer edit! – Steven Sep 16 '10 at 13:25
+1 rep for you my man! Thanks - of all the bloody things.. – Neurofluxation Sep 16 '10 at 13:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.