Page 5 - Discuss TI 83+/84+ programming? in the TI 83/84 forum on Dev Hardware. TI 83+/84+ programming? Programming forum discussing coding and everything related to the well-known TI-83/83+/84/84+ graphing calculators for math and science. Creative ideas, helpful information and questions regarding applications are welcomed but no homework at all!
Posts: 40
Time spent in forums: 12 h 55 m 27 sec
Warnings Level: 10
Number of bans: 1
Reputation Power: 0
need ? help?
ok if anybody has a program that they want better just ask here i'll help and still act as if you did it on your own cause you will have to understand my help to use it
Last edited by slayer117 : April 28th, 2006 at 05:08 PM.
Reason: cause the message sucked k?
Posts: 2
Time spent in forums: 17 m 49 sec
Reputation Power: 0
Need help!
Hi! I am trying to make a program for a TI-83 Plus calculator for work and it should be simple but we can not figure it out!!!
***We need to have the program say "enter sum" and enter "age" and then give us the answer to the equation for us to record down for our clients. We can have 2 different programs so if someone could help us with one we could figure out the other one!!
What we are trying to do:
make a program for entering in values into an equation to get the answer.
Posts: 7,295
Time spent in forums: 1 Month 6 h 39 m 6 sec
Reputation Power: 1504
Quote:
Originally Posted by ospt
Hi! I am trying to make a program for a TI-83 Plus calculator for work and it should be simple but we can not figure it out!!!
***We need to have the program say "enter sum" and enter "age" and then give us the answer to the equation for us to record down for our clients. We can have 2 different programs so if someone could help us with one we could figure out the other one!!
What we are trying to do:
make a program for entering in values into an equation to get the answer.
:disp "Enter age:"
:input a
:disp "Enter skinfolds:"
:input x
:
:((0.29669(x))-(0.00043(x*x))+(0.02963(a))+1.4072) -> f
:((0.29228(x))-(0.0005(x*x))+(0.15845(a))-5.76377) -> m
:
:disp "male body fat%:"
:disp m
:
:disp "female body fat %:"
:disp f
:
:Pause
:clrhome
Posts: 2
Time spent in forums: 17 m 49 sec
Reputation Power: 0
Thank you very much!!! You are a lifesaver!!!
One quick question though...for the "->" what did you use for the ">" because I went to the catalog and picked the greater than symbol and it says I have an error!!
Posts: 40
Time spent in forums: 12 h 55 m 27 sec
Warnings Level: 10
Number of bans: 1
Reputation Power: 0
Quote:
Originally Posted by ospt
Thank you very much!!! You are a lifesaver!!!
One quick question though...for the "->" what did you use for the ">" because I went to the catalog and picked the greater than symbol and it says I have an error!!
Thanks!
the -> symbol means that you press the sto> button
Posts: 1
Time spent in forums: 25 m 24 sec
Reputation Power: 0
TI-84+ Programing?
hey...im kinda new to programming on a TI calculator, but I do know a little bit about programming (C++, BlitzBASIC). I am trying to write a program that works with the start up app that asks for a PIN number whenever the calculator is turned on.
I have everything else put on there right but people can get around it using the 2nd Quit function, and they can also just hit enter and do the break error. Any way to disable them from doing this?
The source for the program is:
ClrHome
Disp " LOCK V0.1 BETA"
Disp " "
Lbl 1
Disp " ENTER PIN:"
Input Z
If Z=[pin number]
Stop
If Z≠[pin number]
Goto 1
I was thinking, if I could have it keep on using getkey and check if the 2nd button gets pressed it could just go back to Lbl 1...the only problem is that I can't get it to keep on checking it. I can get it to check it for a split second before it gets to the prompt loop, but thats it.
I have no clue how to get around the ERR:BREAK...in fact I dont think you can do it
o yea and about the programs that people have asked for in the past for things like distance forumula I have already made those that even show the work that was the first thing I worked on.
Posts: 3
Time spent in forums: 46 m 44 sec
Reputation Power: 0
maybe you can do this:
Lbl2
Output(1,1,"PIN=")
0->X //Postion of key to be pressed (you'll see why this is needed)
Lbl 1
getKey->K
If K/=105 or K/=0 //if a key is pressed and its not Enter or zero, then it counts it
Then //as a pin key (you can customize this to make it only numbers)
K -> List1(X) //Stores the key pressed into a list
Output(1,5,"*") //outputs "*" to make it show something like PIN=****
X+1->X //Moves the spot over for the next pin digit, ex: *_ to **_
End
If K=105 //if the Enter key is pressed (confirming the pin is entered)
Then
If List1(X) = {25,34,26} //compares the key sequence pressed to the password
Stop //the pin for this is Up,Right,Down and exits if True
ClrHome //If False, goes to the beginning of the program or whatever to
goto 2 //start the password entering process again
End
goto 1 //Loops back to the beginning for next PIN Digit
Posts: 14
Time spent in forums: 1 h 41 m 48 sec
Reputation Power: 0
Quote:
Originally Posted by capitalal2003
Hello,
I'm in need a the code for a program to help solve system of equations problems. I'm sick of this substitution and elimination stuff, but I mainly need the program to check.
Please post code, and if there are any weird buttons please show how to get to them, I know most of them though.
Thanks!
Hi, if you need a program to check, than you should make it so that it gives you the formula using a string and then gives you the answer. thats what I did and the program isn't very long
Posts: 4
Time spent in forums: 1 h 49 m 47 sec
Reputation Power: 0
BEHOLD MY FIRST POST!!11!1111
Yeah I've been messing around with my TI-84 latey and I've got a rather n00bish question. How do you set a program to a start up? So like everytime you hit "on" the program starts right up. I know RTFM but....I just dont feel like opening it up.
"In front of a monitor is a dangerous place from which to view the world." --Terri Wells
Enable BSOD: Control Panel/Systems, Advanced Tab, hit the Settings button under Startup and Recovery, and under the System Failure area, uncheck the Automatically Restart checkbox.