need serious beginner help
Posted: Tue Mar 21, 2006 4:20 am
Just got this wacky program because I always thought it was fun to make things on my graphing calculator. I was just trying to make this program about the standard formula for a line and I can't get the thing to work! It's been driving me nutty and any help would be greatly appreciated!
If OpenConsole()
PrintN(""):PrintN("Input A: ")
a.s=Input()
StrF(a)
PrintN(""):PrintN("Input B: ")
b.s=Input()
StrF(b)
PrintN(""):PrintN("Input C: ")
c.s=Input()
StrF(c)
xintercept.f=(c/a)
yintercept.f=(c/b)
ClearConsole()
PrintN("The X-intercept is "+Str(xintercept)+"and the Y-intercept is "+Str(yintercept)+".")
EndIf
End

If OpenConsole()
PrintN(""):PrintN("Input A: ")
a.s=Input()
StrF(a)
PrintN(""):PrintN("Input B: ")
b.s=Input()
StrF(b)
PrintN(""):PrintN("Input C: ")
c.s=Input()
StrF(c)
xintercept.f=(c/a)
yintercept.f=(c/b)
ClearConsole()
PrintN("The X-intercept is "+Str(xintercept)+"and the Y-intercept is "+Str(yintercept)+".")
EndIf
End