Qbasicを学び始めました。初心者の練習では、簡単なテキストゲームを使い始めました。山は「北」にあり、「北」と入力すると、を入力した後に「山」が表示されます。と入力します。ただし、「北」と入力してと入力した場合は、コードが実行されていません。これは初心者の間違いですか? と異なるものを押してください。と入力してください。Qbasicで入力が機能しない
ここでは、コードです:
CLS
PRINT "There is a mountain to the North"
PRINT "There is a cactus to the East"
PRINT "There is a river to the South"
PRINT "There is a shack to the East"
PRINT " "
INPUT "Type a direction:", direction$
IF direction$ = "north" THEN PRINT "Mountain"
そしてrepl.itからの出力:
QBasic (qb.js)
Copyright (c) 2010 Steve Hanov
:
There is a mountain to the North
There is a cactus to the East
There is a river to the South
There is a shack to the East
:
Type a direction: north
:
LEFT $(方向$、5)= "北" IF THEN PRINT "Mountain" – eoredson