Name: Anonymous 2009-04-28 21:40
What's wrong with my program? I get syntax error when I run it.
:Label start
:300->A
:While A>=0
:If int(A/2)=A/2
:Then
:Disp A+" is even"
:ELSE
:Disp A+" is odd"
:End
:A-1->A
:End
:Disp "Run Again? (Y/N)"
:While getkey=0
:End
:If Ans=64
:Then
:Goto start
:Else
:Disp "Have a nice day"
:End