Sephinroth

quad_eq_solver_js_example

Oct 11th, 2023 (edited)
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.     <body>
  3.         <script>
  4.             ans = 'y'
  5.             while (ans == 'y') {
  6.                 b = parseFloat(prompt("b = "))
  7.                 c = parseFloat(prompt("c = "))
  8.                 d = b * b - 4 * c
  9.                 if (d < 0)
  10.                     document.writeln("No solution")
  11.                 else {
  12.                     x_1 = (-b + Math.sqrt(d)) / 2
  13.                     x_2 = (-b - Math.sqrt(d)) / 2
  14.                 }
  15.                 document.writeln('x' + '<sub>1</sub>' + ' = ' + x_1 + '<br>')
  16.                 document.writeln('x' + '<sub>2</sub>' + ' = ' + x_2 + '<br>')
  17.                 ans = prompt("Repeat? [y/n]")
  18.             }
  19.         </script>
  20.     </body>
  21. </html>
  22.  
Add Comment
Please, Sign In to add comment