Hi everyone, I wrote a new program but I am having trouble making it display to things at once.

Here is what I have:


Code:


Input "Proton-H ?",A
Input "Neutron-n ?",B
Input "Element Mass: ",C
A(1.00783) + B(1.00867) - B ->D
D*(2.998E8)^2->E
Input "Total Particles: ",F
(E/F)*0.001->G
Disp "E= "
Output (E)
Disp "Ebind:nucleon= "
Output (G)


I get ERR:ARGUMENT
1:Quit
2:Goto

What am I doing wrong and how do I display two things?

Thanks

L
So the only issue is just the usage of the Output command. If you remove those and replace with commas such as this, it should work correctly Smile


Code:
Disp "E= ",E
Disp "Ebind:nucleon= ",G


You can find more information about the output command here: http://tibasicdev.wikidot.com/output
Thank you I got it to work now
  
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