TI-BASIC/QUADREG.ti

13 lines
146 B
Text
Raw Permalink Normal View History

2024-01-09 03:40:12 +01:00
PROGRAM:QUADREG
Disp "A"
Input A
Disp "B"
Input B
Disp "C"
Input C
((-B+sqrt(B^2-4*A*C))/(2*A))->D
((-B-sqrt(B^2-4*A*C))/(2*A))->E
Disp D
Disp E