<p>Hi.
Welcome to ELASLAWEK's Calculator Programs for the SAT/SATII Math exams.</p>
<p>Each program has a name.
Enter What I write into the program name
Every line is a new line
Sqrt(x+1) = The square root of (x+1)
x^2 = x squared.
Pi = Pi (3.14159)</p>
<p>Hopefully you'll enjoy.</p>
<p>Program : Quadratic Solver</p>
<p>Prompt A
Prompt B
Prompt C
B^2-4AC--> D
Disp "D="
Disp D
(-B+Sqrt(D))/(2A)-->Q
(-B-Sqrt(D))/(2A)-->W
Disp Q
Disp W
Stop</p>
<p>Program : Area of Triangle using 3 sides</p>
<p>Disp "Side A"
Input A
Disp "Side B"
Input B
Disp "Side C"
Input C
A+B+C-->X
X/2-->D
Sqrt((D)(D-A)(D-B)(D-C))--> E
Disp "Area=?
Disp E
Stop</p>
<p>Program : Distance between 2 Points </p>
<p>Prompt A
Prompt B
Prompt C
Prompt D
Sqrt((A-C)^2+(B-D)^2)--> E
Disp "Distance ="
Disp E
Stop</p>
<p>Program : Midpoint</p>
<p>Prompt A
Prompt B
Prompt C
Prompt D
(A+C)/2--> E
(B+D)/2--> F
Disp "X Midpoint="
Disp E
Disp "Y Midpoint="
Disp F
Stop</p>
<p>Program : Sum of X Consecutive integers</p>
<p>Disp "Sum of"
Input S
.5S(S+1)-->A
Disp "Sum of 1 to S="
Disp A
Stop</p>
<p>Program : Sphere</p>
<p>Disp "Radius="
Input R
(4/3)PiR^3-->Z
4PiR^4--> Y
Disp "Volume="
Disp Z
Disp "Surface Area="
Disp Y
Stop</p>
<p>Program : Cone</p>
<p>Disp "Radius="
Input R
Disp "Height="
Input H
Disp "Slant="
Input S
(1/3)PiR^2H-->V
PiR^2+PiRS--> W
Disp "Volume="
Disp V
Disp "Surface Area="
Disp W
Stop</p>
<p>NOTE : These programs are the ones I find most useful so I don't waste time.
I will be adding more programs to this post at a later time. If someone finds a mistake, please let me know. If someone wants me to make them a program, just let me know.</p>
<p>Hope this helps!</p>
<p>I can answer any questions.</p>