[text] Д

Viewer

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.         <title>Calc</title>
  5. </head>
  6. <body>
  7.         <input type="text" placeholder="0" name="" id="first">
  8.         <input type="text" placeholder="0" name="" id="second">
  9.         <input type="button" value="+" onclick="plus();" name="">
  10.         <input type="button" value="-" onclick="minus();" name="">
  11.  
  12.  
  13.         <input type="text" placeholder="Result" name="" id="res">
  14.         <script>
  15.                 function plus() {
  16.                         a = document.getElementById('first').value;
  17.                         b = document.getElementById('second').value;
  18.                         c = parseFloat(a)+parseFloat(b);
  19.                         document.getElementById('res').value = c;
  20.                 }
  21.                 function minus() {
  22.                         a = document.getElementById('first').value;
  23.                         b = document.getElementById('second').value;
  24.                         c = parseFloat(a)-parseFloat(b);
  25.                         document.getElementById('res').value = c;
  26.                 }
  27.        
  28.  
  29.         </script>
  30. </body>
  31. </html>
  32.  

Editor

You can edit this paste and save as new:


File Description
  • Д
  • Paste Code
  • 23 Jun-2021
  • 841 Bytes
You can Share it: