Hi I'm new and I never really attempted any programming on my calulator before but recently I discovered it and I'm taken aback by its functionality and how much easier it is for me in my chemistry class
the premise of the program I am trying to create is an equation converter between two variables much like how you convert temp from c to f, and f to c, I am trying to emulate that for Kc to Kp and Kp to Kc
I'm basing it off of this: http://tech.reboot.pro/showthread.php?tid=1697
So far I have everything up to label 1 complete, but I wrote out the rest of what I want to do, except didn't enter everything into my calculator yet.
Can anyone tell me what I'm doing wrong? Is there way to test if this code works on my computer aside from typing everything manually on my calculator?
Thanks
Code:
the premise of the program I am trying to create is an equation converter between two variables much like how you convert temp from c to f, and f to c, I am trying to emulate that for Kc to Kp and Kp to Kc
I'm basing it off of this: http://tech.reboot.pro/showthread.php?tid=1697
So far I have everything up to label 1 complete, but I wrote out the rest of what I want to do, except didn't enter everything into my calculator yet.
Can anyone tell me what I'm doing wrong? Is there way to test if this code works on my computer aside from typing everything manually on my calculator?
Thanks
Code:
[b]:Lbl 0
:ClrHome
:Menu("Kc→Kp",1,"Kp→Kc",2,"EXIT",3)
:Lbl 1
:Input "Kc: ",A
:Input "T: ",B
:Input "n: ",C
:A((0.0821*B)^C)→X
:Disp "Kp= "
:Output (X)
:Pause
:Goto 0[/b]
Lbl 2
:Input "Kp: ",A
:Input "T: ",B
:Input "n: ",C
A/((0.0821*B)^C)→X
:Disp "Kc= "
:Output (X)
:Pause
:Goto θ
:Lbl 3
:ClrHome
:Stop