Hi, i wrote a program with 4 variables. they all prompt and enter correctly but i get an error that reads "variable or flash application is locked, protected or archived" the "goto" option takes me to the first line of my equation in my program. I my program looks kind of like this:
:km()
:prgm
:prompt db
:prompt e
:........
:.577*e*db*pi......store k
:disp k
:end program
any ideas?
Im new to programming so i dont understand what the issue is. Im following a you tube tutorial on programming an 83... so maybe there are some differences in the two languages....
Thanks
I agree with the previous solution and would like to add if you declare your variables using the local command then they will only reside in that program.
:prgm
:local db, e, plus other variable used in your program with a comma to separate them.
:prompt
And I think what the above solution is saying is to :Disp "k",k would work better.
I hope you used the Ti commands and not the ones you spell out on your listing, if so you might want to check them too. The store command I can understand why you typed it out.
I like the fact you want to program so remember fixYa to help you develop your programming.
Hello,
Languages are different. But I suspect that the name you have given to your program has already been assigned to a previous one. Give another name and retry.
Hope it helps.
597 views
Usually answered in minutes!
×