Advertisement
adkpaste

QUADS by DomDCalcs for color Ti 84/83 family

Jun 1st, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. Lbl 52
  2. prgmCLEAR
  3. Input "INPUT A: ",A
  4. Input "INPUT B: ",B
  5. Input "INPUT C: ",C
  6. prgmCLEAR
  7. If (B²-(4*A*C))<0
  8. Then
  9. Disp "NO SOLUTION"
  10. Pause
  11. Goto 3
  12. Else
  13. ((­B+√(B²-(4*A*C)))/(2*A))→D
  14. ((­B-√(B²-(4*A*C)))/(2*A))→E
  15. Text(1,1,"X= ",D)
  16. Text(20,1,"X= ",E)
  17. If B>0
  18. Then
  19. B*­1→B
  20. Goto 45
  21. Else
  22. Lbl 45
  23. Text(34,1,B,"+/- √(",B^2-4*A*C,")")
  24. Line(­30,2.9,­2.3,2.9)
  25. Text(60,18,2A)
  26. Pause
  27. Lbl 3
  28. Menu("SOLVE ANOTHER?","YES",52,"NO",2)
  29. Lbl 2
  30. prgmUNCLEAR
  31. Stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement