为什么这个GOTO在BASIC 256中不起作用


2 Print "What is your name"
input nameperson$
Print "What is your Dad's name"
input ageperson$
Print "Your Name is ";nameperson$;" ";ageperson$
GOTO 2

为什么这个代码不能在BASIC 256中工作?我在QB64中尝试过,它很有效。

我上次用BASIC编程已经好几年了,但我记得该语言有不同的风格(与C、Pascal和其他语言相同(。

我在谷歌上搜索了QB64Basic 256:简短的答案是Q B64的Basic风格支持行号,但

Basic 256要在BASIC 256中使用GOTO,必须使用标签(后面跟着冒号":"的任何标识符(

thisIsALabel: Print "What is your name" 
input nameperson$ 
Print "What is your Dad's name" 
input ageperson$ 
Print "Your Name is ";nameperson$;" ";ageperson$ 
GOTO thisIsALabel

相关内容

  • 没有找到相关文章

最新更新