Re: basic question
[Prev][Next][Index][Thread]
Re: basic question
Usually a memory leek isn't that bad if the loop isn't itterated a few
hundred times. If it is a problem, you can solve it like this:
Instead of just putting:
Lbl 2
Put this:
If 0 then
Lbl 2
End
But then you will have a syntax error if you jump to label 2 from
anywhere where there isn't a memory leek, you can solve that like
this, by creating a memory leak:
Instead of
Goto 2
Put this:
If 1 : then
Goto 2
End
It can get a little more complicated, but you have to think about what
the best technique is....
Philipp Keller
> But then it has a memory leak because the "Then" never "End"s.
>
> Nejad <nejad@wn.com.au> wrote in message
> VdCT2.535$0r5.5404@newsfeed.slurp.net">news:VdCT2.535$0r5.5404@newsfeed.slurp.net...
> > Your problem is on this line:
> > If E=1:ClrHome:Goto 2
> > It will work if you replace it with:
> > If E=1:Then:ClrHome:Goto 2:End
> >
> > >i made this program for my ti83 to help me with my homework. i
made it
> > kinda
> > >long for a short program. the problem i have is that at the end
of the
> > program
> > >i have an input and when i put in 1 or 2 i go to the same place
every
> time
> > and
> > >not two different places. here is the program:
> > >
> > >Lbl 1
> > >ClrHome
> > >Prompt A,B
> > >Lbl 2
> > >Prompt X,Y
> > >AX+BY -> C
> > >Disp C,""
> > >Input"1: NEW 2: STOP",D
> > >If D=1:Goto 4
> > >If D=2:Goto 3
> > >End
> > >Lbl 3
> > >ClrHome
> > >Stop
> > >Lbl 4
> > >ClrHome
> > >Disp " SAME A and B"
> > >Input "1: YES 2: NO",E
> > >If E=1:ClrHome:Goto 2
> > >If E=2:Goto 1
> > >End
> >
> >
> >
>
>
>
> > > >Prompt X,Y
> > >AX+BY -> C
> > >Disp C,""
> > >Input"1: NEW 2: STOP",D
> > >If D=1:Goto 4
> > >If D=2:Goto 3
> > >End
> > >Lbl 3
> > >ClrHome
> > >Stop
> > >Lbl 4
> > >ClrHome
> > >Disp " SAME A and B"
> > >Input "1: YES 2: NO",E
> > >If E=1:ClrHome:Goto 2
> > >If E=2:Goto 1
> > >End
> >
> >
> >
>
>
>
>
******************************************************************
* To UNSUBSCRIBE, send an email TO: listserv@lists.ppp.ti.com
* with a message (not the subject) that reads SIGNOFF CALC-TI
*
* Archives at http://peach.ease.lsoft.com/archives/calc-ti.html
******************************************************************
Follow-Ups:
References: