This is the entire program but it always gives me an ERR. Argument, I have no idea where I went wrong
Its when ever I try using my Sphere in the first menu
EDIT: I found the issue on the menu 2 i forgot to add a " to the question also changed it on the code below
:ClrHome
:Menu(“SOLVE FOR”,”PRISM”,1,”
CONE”,2,”CYLINDER”,3,”Sphere”,4
:Lbl 1
:Input “L”,L
:Input “W”,W
:Input “H”,H
LxWxH→V
:GOTO 7
:Lbl 2
:Input “R”,R
:Input “H":,H
3.14xR2x(H/3)→V
:Goto 7
:Lbl 3
:Input “R”,R
:Input “H”,H
3.14xR2xH→V
:Goto 7
:Lbl 4
:Menu(“FULL OR HALF”,”FULL”,6,”HALF”,7
:Lbl 6
:Input “R”,R
((4/3)x3.14xR3)→V
:Goto 7
:Lbl 7
:Input “R”,R
(((4/3)x3.14xR3)/2)→V
:Goto 7
:Lbl 7
:Disp “Answer”,V
:Stop