Overclock.net banner

tired programmer needs help with TI Basic

908 Views 6 Replies 3 Participants Last post by  gravity
2
hey i wrote this prog in TI Basic for my high school Calc II class, whats wrong with it?
it says "Argument error" and takes me to the line within *asterisks ok?
here we go:
(BTW im on a TI-89 that i overclocked to 20MHz thanks to a FAQ by someone on this site, "game")
rgm
rompt a,b,c,o
:If c=x Then
*Disp (a^2+b^2-(2abcos(o)))^.5*
:ElseIf o=x Then
Disp arccos((c^2-a^2-b^2)/(-2ab))
:EndIf
:EndPrgm
*** IS WRONG!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
thanx
See less See more
1 - 7 of 7 Posts
Try replacing it with:

Disp (((a^2+b^2)-(2abcos(o)))^.5)
  • Rep+
Reactions: 1
same thing, same error, take me to same line.....
GOT IT.....instead of a^2 i used a*a and it worked
thats really fuc*ed up
It could be the overclock that messed up the whole thing... not sure though...
1 - 7 of 7 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top