Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Kalkulator</title>
  8. <link rel="stylesheet" href="style.css">
  9. </head>
  10. <body>
  11. <div class="calculator">
  12. <input type="number" id="input1"/> <input type="number" id="input2"/><br/>
  13. <div class="buttons">
  14. <button id="dodawanie" onclick="suma()">Dodawanie</button>
  15. <button id="odejmowanie">Odejmowanie</button>
  16. <button id="mnozenie">Mnożenie</button>
  17. <button id="dzielenie">Dzielenie</button>
  18. </div>
  19. </div>
  20.  
  21.  
  22. <script>
  23. const dodawanie = document.getElementById("dodawanie");
  24. const odejmowanie = document.getElementById("odejmowanie");
  25. const mnozenie = document.getElementById("mnozenie");
  26. const dzielenie = document.getElementById("dzielenie");
  27.  
  28. function suma(){
  29. const inputA = parseFloat(document.getElementById("input1").value);
  30. const inputB = parseFloat(document.getElementById("input2").value);
  31. alert(inputA + inputB);
  32. }
  33.  
  34. </script>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement