CodeWalrus

Development => Calculators => Calc Projects, Programming & Tutorials => Topic started by: Timmiez on June 04, 2018, 02:56:58 AM

Title: Potential Energy Calculation
Post by: Timmiez on June 04, 2018, 02:56:58 AM
Program originally written on TI-83 Plus:

Apparently I found out I'm quite lazy when it comes to solving equations in my science classroom, so I kinda decided to make a program that solves the answer based on the input. Though being simple for a program I made with simple knowledge.


ClrHome
Disp "INPUT TYPE:","","VARS: (P,M,H)"
Prompt  0

If 0=P:Then
ClrHome
Disp "POTE CALC","","INPUT: (J)"
Prompt M,H
M(9.8)H→A
Disp A
Else
End

If 0=M:Then
ClrHome
Disp "POTE MASS CALC:","","INPUT: (KG)"
Prompt P,H
P/(9.8*H)→B
Disp B
Else
End

If 0=H:Then
ClrHome
Disp "POTE HEIG CALC:","","INPUT: (M)"
Prompt P,M
P/(9.8*M)→C
Disp C
Else
End


A lot of editing of the code has had made it functional as you see it know, if you were to own a graphing calculator yourself, don't hesitate to try it out yourself, you may appreciate it.

Although to a separate topic, for those know don't know me, I'm a Freshman at my local high school and planning in enrolling in graphic design and web development. I have a great passion for programming and would love to learn any language I could grasp and soon learn. But with little information shared 'bout myself, I may post here and talk on the Discord a little more often when I come around to it. Gotz to get used to the crowd n' all.
Title: Re: Potential Energy Calculation
Post by: _iPhoenix_ on June 04, 2018, 05:55:24 AM
Welcome to CodeWalrus!


With If-Then-Else-End conditionals, you can skip the Else if you don't need it. It'll be faster and smaller!


Additionally, you don't need quotes, parentheses, braces, or brackets at the end of a line or immediately before a store arrow. This is a weird quirk if TI-BASIC, but it saves quite a few bytes in the long run :)