Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Kalkulator</title>
  4. <meta charset="UTF-8">
  5. <script language="javascript">
  6. <!--
  7. function dodaj(){
  8. if (document.getElementById("pierwsza").value=="") {
  9. alert("Wpisz wartość pierwszej liczby");
  10. return; }
  11. if (document.getElementById("druga").value=="") {
  12. alert("Wpisz wartość drugiej liczby");
  13. return; }
  14.  
  15.  
  16. var wynik=
  17. parseFloat(document.getElementById("pierwsza").value)
  18. +
  19. parseFloat(document.getElementById("druga").value);
  20.  
  21. document.getElementById("wynik").value = wynik;
  22. return;
  23. }
  24. -->
  25. </script>
  26. </head>
  27. <body>
  28. <form>
  29. <input type="text" id="pierwsza" value=""></input>
  30. <input type="text" id="druga" value="">
  31. <input type="button" id="guzik" name="guzik" value="+" value="Dodaj" onclick="dodaj()">
  32. <input type="button" id="guzik" name="guzik" value="-" value="Odejmij" onclick="odejmij()">
  33. <input type="button" id="guzik" name="guzik" value="*" value="Powiel" onclick="powiel()">
  34. <input type="text" id="wynik" value=""></input>
  35. </form>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement