When i run this code,

Code:
toString(A)->A
toString(B)->B
toString(C)->C
A+"X^2"+"+"+B+"X"+"+"+C->D
Disp D


It gives a data type error. at line ...-> D I suspect it is to do with the toString, but cant figure out what is going wrong.
TI-BASIC has 10 Str# variables that are used to store strings. They cannot just be stored into letter variables. On most Z80 calculators there is a "String" option under the [vars] menu that contains a list of String variables that can be chosen.
Your code could look something like:
Code:
toString(A->Str1
toString(B->Str2
toString(C->Str3
Str1+"X^2+"+Str2+"X+"+Str3->Str4
Disp Str4
or even
Code:
Disp toString(A)+"X^2+"+toString(B)+"X+"+toString(C
I've been using too much python and forgot that. thanks
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement