<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>TI-83/84/+/SE Programming (new threads)</title>
		<link>http://tibasicdev.wikidot.com/forum/c-7079/ti-83-84-se-programming</link>
		<description>Threads in the forum category &quot;TI-83/84/+/SE Programming&quot; - Discuss topics related to programming the TI-83, 84, Plus and Silver Edition</description>
				<copyright></copyright>
		<lastBuildDate>Fri, 10 Jul 2026 11:33:28 +0000</lastBuildDate>
		
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17100988</guid>
				<title>Coordinate Game</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17100988/coordinate-game</link>
				<description>This code is getting stuck in a loop somewhere. I believe the culprit is a loose End stopping the main Repeat early.</description>
				<pubDate>Fri, 25 Apr 2025 20:00:09 +0000</pubDate>
				<wikidot:authorName>OK Calculator</wikidot:authorName>				<wikidot:authorUserId>9664703</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hey Wikidot community,<br /> I recently found out about the Input function's use to get X and Y values. That inspired me to create a guessing game where a random set of coordinates is chosen, and the player must guess them with clues about generally how far away they are. There are also some other features I added and am going to add. I have now run into a bug where the third guess resets as if I inputted invalid coordinates, and then it exits on the next guess. The only reasons I can think of why it would do this are K=45 (I didn't press clear) or T=50 (It did not finish the For( loop).<br /> I would love if you guys could take a look at this and help me figure out what is going wrong, and I apologize in advance for the messy coding (I didn't get around to optimizing it yet).<br /> Thanks for the help,<br /> Calc</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17096482</guid>
				<title>Inputting a function as a variable</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17096482/inputting-a-function-as-a-variable</link>
				<description>Actually a TI-89 basic question: I can&#039;t get a user pre-defined function to work once input as a variable.</description>
				<pubDate>Sun, 20 Apr 2025 10:32:29 +0000</pubDate>
				<wikidot:authorName>gkenyon</wikidot:authorName>				<wikidot:authorUserId>9658342</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>[Edit- I found a post on programming functions further down the forum and will be working with the info in there]<br /> I'm a total beginner and actually grinding it out on a TI-89. The program is a (hopefully) simple implementation of the midpoint rule for approximating the value of an integral. The first of two basic obstacles is bringing in the function being integrated in a way that allows it to use a list as its mathematical variable.. I am hopeful that once this is clear to me I'll be able to work out the list dimension mismatch problems I'm having on my own.<br /> My first attempt for getting the inputs was using the Request command and converting the strings to numerical variables, which would have been optimum due to the sense of user-friendliness. Once I couldn't make the function input work properly using Request, I tried the Input command. Likewise no dice. Here's the pertinent part of the code:</p> <p><strong>bold text</strong><br /> : Input &quot;function&quot;,g<br /> :Define g(x)=g<br /> (creates a partition of the interval of interest and stores it as list1)<br /> :Define g(list1)=list2</p> <p>So, the above doesn't work and I think it's the function's problem rather than the list's problem. I'm looking for the output in the list editor and list1 is fine but list2 has a &quot;data type&quot; error.<br /> I tried using FUNC, ENDFUNC but it won't accept the numerical variable, it needs explicit direction. I don't want to apply a function that lives within the program&#8230; I want to apply the user's own function.</p> <p>Thanks for any thoughts whatsoever!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17095880</guid>
				<title>Using the solver on the ti-84</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17095880/using-the-solver-on-the-ti-84</link>
				<description>Trying to figure out the solver on the 84 for a missing point finder</description>
				<pubDate>Sun, 20 Apr 2025 01:29:08 +0000</pubDate>
				<wikidot:authorName>Math_Nerd01</wikidot:authorName>				<wikidot:authorUserId>9657897</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Here is the code I have so far and it is showing an error in the solver. I am new to this and don't really know what I am doing so help would be appreciated!<br /> Disp &quot;X1,Y1,X2,Y2,X3,Y3&quot;<br /> Prompt A,B,C,D,E,F<br /> Disp &quot;Area&quot;<br /> Prompt G<br /> solve(abs(A*(D-F)-B*(C-E)+C*F-E*D),X)→V<br /> disp V</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17092065</guid>
				<title>Type validation</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17092065/type-validation</link>
				<description>Trying to figure out how to validate different variable types without throwing errors</description>
				<pubDate>Wed, 16 Apr 2025 14:09:25 +0000</pubDate>
				<wikidot:authorName>undeadf0x</wikidot:authorName>				<wikidot:authorUserId>9651199</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I just recently got into TI-Basic programming, and I've already ran into a problem!</p> <p>The goal: To be able to take a variable, and then return a 1 (true) or 0 (false) based on if the variable type is the type we're checking for.</p> <h1><span>Strings (Unsolved)</span></h1> <p>Strings are the main reason this problem came up at all for me, and the reason I'm making this post. I've had a couple ideas for this, but so far they all lead to errors! My first thought was to try <tt>toString(Ans)=Ans</tt>, however this returns <tt>ERROR: DATA TYPE</tt>. I've tried some other ideas, such as checking for <tt>Length(</tt>, but without the <tt>Try</tt> command, we can't handle any of these solutions properly in TI-83 Basic.</p> <h1><span>Lists (Untested)</span></h1> <h1><span>Matrices (Untested)</span></h1> <h1><span>Numbers (Untested)</span></h1> <p>(Here's to hoping I'm able to edit this post, because I want to just post this now during a break)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17014798</guid>
				<title>PAPITA</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17014798/papita</link>
				<description>Papita is a TI-84+ &quot;SE&quot; Game I&#039;m working, here I&#039;m sharing my Game progress, and i will ask for some things, because this will be my first game!!</description>
				<pubDate>Thu, 02 Jan 2025 00:59:12 +0000</pubDate>
				<wikidot:authorName>A_MathFan</wikidot:authorName>				<wikidot:authorUserId>9520160</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Papita is a TI-84+ &quot;SE&quot; Game I'm working, here I'm sharing my Game progress, and i will ask for some things, because this will be my first game!!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17003059</guid>
				<title>ERROR:DOMAIN</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17003059/error:domain</link>
				<description>I am writing a code for a game called &#039;SCROLL&#039; that keeps on getting a Domain Error in a specific line of code.</description>
				<pubDate>Fri, 06 Dec 2024 17:00:07 +0000</pubDate>
				<wikidot:authorName>NiNjaMAN1210</wikidot:authorName>				<wikidot:authorUserId>9480928</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Here's the line. Type it into your calculator and see if you can fix it!<br /> Output(10,R,&quot;]&quot;)<br /> Output(10,R+W,&quot;[&quot;)</p> <p>Here is the full code if you need that too.</p> <p>ClrHome<br /> Disp &quot;&quot;<br /> Disp &quot; READY, SET,&quot;<br /> Disp &quot; 3&quot;<br /> Disp &quot; 2&quot;<br /> Disp &quot; 1&quot;<br /> Disp &quot;&quot;<br /> For(X,1,500):End<br /> Disp &quot; GO!&quot;<br /> Disp &quot;&quot;:Disp &quot;&quot;:Disp &quot;&quot;<br /> 0→D:0→C:13→X:8→W<br /> int((28-W-1)/2)→R<br /> {R,R,R,R}→L₁<br /> 0→S:8→M:0→N<br /> While D=0<br /> Output(10,R,&quot;]&quot;)<br /> Output(10,R+W,&quot;[&quot;)<br /> Disp &quot;&quot;:Output(2,1,C)<br /> Output(6,X,&quot;=V=&quot;)<br /> Output(5,X,&quot;O+O&quot;)<br /> Output(4,X,&quot; 0 &quot;)<br /> Output(3,X,&quot;O^O&quot;)<br /> Output(2,X,&quot; &quot;)<br /> If X≥L₁(1) and X≤L₁(1)+W-2:Then<br /> N+1→N:If N=M:Then<br /> If R=9:Then<br /> randInt(­1,1)→S<br /> Else<br /> round((R-9)/W,0)*randInt(­1,0)→S<br /> End<br /> 0→N<br /> End<br /> R+S→R<br /> seq(L₁(I),I,2,4)→L₁<br /> R→L₁(4)<br /> C+1→C<br /> getKey→K<br /> If K=24:Then<br /> Output(3,X+2,&quot; &quot;)<br /> Output(4,X+2,&quot; &quot;)<br /> Output(5,X+2,&quot; &quot;)<br /> Output(6,X+2,&quot; &quot;)<br /> X-1+(X=1)→X:Else:If K=26<br /> Then<br /> Output(3,X,&quot; &quot;)<br /> Output(4,X,&quot; &quot;)<br /> Output(5,X,&quot; &quot;)<br /> Output(6,X,&quot; &quot;)<br /> X+1-(X=24)→X:End:End<br /> Else:1→D:End<br /> End</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17002498</guid>
				<title>How do I connect my TI-84 to my Chromebook?</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17002498/how-do-i-connect-my-ti-84-to-my-chromebook</link>
				<description>I have a TI-84 Plus that is not a CE.</description>
				<pubDate>Thu, 05 Dec 2024 15:01:31 +0000</pubDate>
				<wikidot:authorName>NiNjaMAN1210</wikidot:authorName>				<wikidot:authorUserId>9480928</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>There is the TI Connect app for OS, but it does not seem to pick up my calculator. And I accidentally reset my calculator, which took off all the apps. So I have no idea how to get them back on, and it is really annoying! Please help.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17002221</guid>
				<title>LOWERCASE LETTER PROGRAM</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17002221/lowercase-letter-program</link>
				<description></description>
				<pubDate>Thu, 05 Dec 2024 01:33:23 +0000</pubDate>
				<wikidot:authorName>NiNjaMAN1210</wikidot:authorName>				<wikidot:authorUserId>9480928</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Call this program anything.</p> <p>AsmPrgm<br /> 2114<br /> 8A3E<br /> 08AE<br /> 77<br /> C9</p> <p>When done the program, write on the homescreen- Asm(prgm{What you called it})</p> <p>Then press [Alpha] 2 times.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-17001918</guid>
				<title>Adding numbers to a list.</title>
				<link>http://tibasicdev.wikidot.com/forum/t-17001918/adding-numbers-to-a-list</link>
				<description>i cant get it to work</description>
				<pubDate>Wed, 04 Dec 2024 18:30:30 +0000</pubDate>
				<wikidot:authorName>HIYOU7546</wikidot:authorName>				<wikidot:authorUserId>9490530</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have a program where i am trying to append numbers to the end of a list so I can use them later in the program and the ways ive googled and looked at how to do this hasnt worked and keeps giving me a var type kind of error. How do I fix?</p> <p>the code looks like</p> <div class="code"> <pre><code>For(Z,1,20,1) {Z^R}-&gt;L1(dim(L1)+1) End</code></pre></div> <p>how do I make it add to the list instead of replace the value? I've triedultiple ways but none have worked on my TI 84+ SE</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16999907</guid>
				<title>Help!</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16999907/help</link>
				<description>I can&#039;t find &#039;plotsquare&#039; or what it stands for.</description>
				<pubDate>Tue, 03 Dec 2024 19:53:35 +0000</pubDate>
				<wikidot:authorName>NiNjaMAN1210</wikidot:authorName>				<wikidot:authorUserId>9480928</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Disp &quot;1&#160;1&#160;0 8 7 &quot;<br /> Disp &quot;5&#160;1&#160;9 pi 5 &quot;<br /> Disp &quot;4&#160;8 plotsquare 2 1&#160;2&quot;<br /> Disp &quot; 2 8 plotsquare 5&quot;<br /> Disp &quot;5 ^ 6&#160;2&quot;<br /> Disp &quot;pi 7 5 &quot;<br /> Disp &quot;5 8 9 2 &quot;<br /> Disp &quot;7 8 != 1 9&quot;<br /> M+1-&gt;M<br /> Goto S<br /> Lbl 1<br /> Disp &quot; &quot;<br /> Disp &quot;EXECUTING..\.&quot;<br /> Disp &quot;plotsquareplotsquareplotsquareplotsquareplotsquareplotsquareplotsquareplotsquareplotsquareplotsquareplotsquareplotsquare&quot;</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16993061</guid>
				<title>Warning- &#039;|&#039; can be confused with many things.</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16993061/warning-can-be-confused-with-many-things</link>
				<description>This is what it really is.</description>
				<pubDate>Thu, 28 Nov 2024 01:55:35 +0000</pubDate>
				<wikidot:authorName>NiNjaMAN1210</wikidot:authorName>				<wikidot:authorUserId>9480928</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Recently, I found '|LTC' in a line of code and didn't know what the '|' was. I tried multiple letters and numbers, but then found that it was this. 'ʟ' (the little L). Find it by pushing [2nd] [0](CATALOG) [)]</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16992936</guid>
				<title>What and Where is &#039;|LTC&#039;?</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16992936/what-and-where-is-ltc</link>
				<description>Please answer!</description>
				<pubDate>Wed, 27 Nov 2024 16:20:52 +0000</pubDate>
				<wikidot:authorName>NiNjaMAN1210</wikidot:authorName>				<wikidot:authorUserId>9480928</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I can't seem to find this anywhere.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16992935</guid>
				<title>What and Where is &#039;prgmGRAPH&#039;?</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16992935/what-and-where-is-prgmgraph</link>
				<description>Does anyone know what this is?</description>
				<pubDate>Wed, 27 Nov 2024 16:19:14 +0000</pubDate>
				<wikidot:authorName>NiNjaMAN1210</wikidot:authorName>				<wikidot:authorUserId>9480928</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Please help, I need to know this for a Pong Program.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16944465</guid>
				<title>Cursor character for snake program</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16944465/cursor-character-for-snake-program</link>
				<description>looking for help with the cursor character for use in a snake game.</description>
				<pubDate>Mon, 23 Sep 2024 00:21:36 +0000</pubDate>
				<wikidot:authorName>DragonKing3021</wikidot:authorName>				<wikidot:authorUserId>7764689</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hello, does anybody know how I could use a normal cursor character for a snake game I'm planning on making? or any other cursor char as well? thank you in advance for all the help. I tried the search function but it still doesn't work, just as a friendly FYI.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16841732</guid>
				<title>Labels</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16841732/labels</link>
				<description></description>
				<pubDate>Wed, 29 May 2024 14:00:53 +0000</pubDate>
				<wikidot:authorName>75Mopar</wikidot:authorName>				<wikidot:authorUserId>9154969</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>In my program I have 2 different menus. After each menu can I use the same Label to call a value from a list?</p> <p>At the top of my program I have a list:<br /> .00024-&gt;A<br /> There are many other items here but I only need one for my example.</p> <p>Then on my 1st menu I have:<br /> Menu(&quot;TEST&quot;,&quot;ALUM&quot;,A, and so on)<br /> Lbl A<br /> A-&gt;Y<br /> GoToC</p> <p>Then I have:<br /> Lbl C<br /> Menu(&quot;TEST 1&quot;,&quot;ALUM&quot;,L, and so on)<br /> Lbl L<br /> A-&gt;Z<br /> GotoD</p> <p>I want to add more options to my list so I'd like to be able to get L back so I was wondering if I could replace the &quot;L&quot; in my Test 1 menu with &quot;A&quot; like my Test menu without causing any problems?</p> <p>I don't have my 84 with me or I would just make the change and try it.</p> <p>Thanks.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16816654</guid>
				<title>TI 83 Programing</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16816654/ti-83-programing</link>
				<description></description>
				<pubDate>Thu, 16 May 2024 19:31:39 +0000</pubDate>
				<wikidot:authorName>DaCodeBoi</wikidot:authorName>				<wikidot:authorUserId>9138974</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi i want to know if it is possible to display 2 different display elements on one line. Also can you make an input where it has pre inputed characters before the variable?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16755651</guid>
				<title>Multi-Line Custom Text Input</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16755651/multi-line-custom-text-input</link>
				<description>How would one go about modifying the code below to make it do multiple lines of text.</description>
				<pubDate>Fri, 22 Mar 2024 17:36:40 +0000</pubDate>
				<wikidot:authorName>EnerLorde</wikidot:authorName>				<wikidot:authorUserId>8924435</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>How would one go about modifying the code below to make it do multiple lines of text?</p> <div class="code"> <pre><code>&quot; →Str1 :Repeat K=105 :Repeat Ans&gt;40 and Ans&lt;94 or Ans=105 :getKey→K :End :Ans-20-5int(.1Ans :If 25&gt;length(Str1) and 0&lt;Ans and Ans&lt;29 :Then :Str1+sub(&quot;ABC DEFGHIJKLMNOPQRSTUVWXYZ&quot;,Ans,1→Str1 :Text(10,1,Str1 :End :If K=23 and 1&lt;length(Str1 :Then :sub(Str1,1,length(Str1)-1→Str1 :Text(10,1,Str1,&quot; :End :End :If 1&lt;length(Str1 :sub(Str1,2,length(Str1)-1→Str1</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16715172</guid>
				<title>Is there a bug with DelVar on TI-84+?</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16715172/is-there-a-bug-with-delvar-on-ti-84</link>
				<description>When deleting a list variable, it seems to remove the last column from the list editor.</description>
				<pubDate>Tue, 13 Feb 2024 01:24:06 +0000</pubDate>
				<wikidot:authorName>SuperSimo</wikidot:authorName>				<wikidot:authorUserId>8915747</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi team,</p> <p>I've been doing some TI-Basic development on TI-84+ (monochrome) and came across what seems to be a bug in the <tt><a href="http://tibasicdev.wikidot.com/delvar">DelVar</a></tt> command (at least on the latest OS 2.55MP).</p> <p><em><strong>When deleting any list variable, it removes the last list in the list editor, even if the two lists are not related.</strong></em></p> <p>Here's a short example that demonstrates the bug:</p> <div class="code"> <pre><code>SetUpEditor L₁,L₂ {0}→AA DelVar ⌊AA</code></pre></div> <p>When I run these commands, and then open the list editor (<tt>STAT</tt>, <tt>ENTER</tt>), I would expect to see L₁ and L₂ displayed, but only L₁ is.</p> <p>It actually doesn't matter which lists you specify in <tt>SetUpEditor</tt>, or which list you create and delete, the same thing occurs.</p> <p>I noticed that repeated <tt>DelVar</tt> calls do not keep removing lists from the editor, it only happens once, until the next <tt>SetUpEditor</tt> call.</p> <p>Can anyone else confirm that this happens on their calculator too? I noticed it seems to have been fixed in the TI-84+ CE editions, so maybe it was discovered and patched since the latest TI-84+ OS release.</p> <h3><span>Workarounds</span></h3> <p>The two workarounds I know about so far are:</p> <ul> <li>Specify an additional column in your <tt>SetUpEditor</tt>, expecting that it the last one will likely get removed during the next <tt>DelVar</tt></li> </ul> <ul> <li>Call <tt>SetUpEditor</tt> AFTER the <tt>DelVar</tt> if you want to ensure it is exactly as you specified, but expect that any future deletion of a list will still remove the last column</li> </ul> <p>If others confirm that this indeed happens to them, I might document this in the wiki.</p> <p>Cheers,<br /> Simo</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16449475</guid>
				<title>Isolating exponent.</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16449475/isolating-exponent</link>
				<description>How can I isolate that exponent so I can save it into a variable to display the name by degree/end behavior of function?</description>
				<pubDate>Fri, 10 Nov 2023 17:10:44 +0000</pubDate>
				<wikidot:authorName>unformatted</wikidot:authorName>				<wikidot:authorUserId>8888145</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Is there a way to isolate the exponent on a number? I usually just write programs to do the current work in my math class at the time, and currently we are doing naming polynomial functions. To name the function by degree, I need to know the exponent of the leading number. This would also allow me to make a program to tell me the end behavior of a function. How can I isolate that exponent so I can save it into a variable to display the name by degree?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-16405305</guid>
				<title>Name input screen</title>
				<link>http://tibasicdev.wikidot.com/forum/t-16405305/name-input-screen</link>
				<description>Does anyone here know how to make a name input screen?</description>
				<pubDate>Tue, 17 Oct 2023 19:39:02 +0000</pubDate>
				<wikidot:authorName>tatbou</wikidot:authorName>				<wikidot:authorUserId>8846651</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm making a remake of MECC's The Oregon Trail and having trouble implementing a Name input screen and storing names in some variables to be called on later.</p> <p>the game takes place all in the graph screen on a TI-83 plus if that helps.</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>