Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <form name="szamol">
  2. <input name="egy"><br>
  3. <input type="button" value=" + " onClick="plusz()">
  4. <input type="button" value=" - " onClick="minusz()">
  5. <input type="button" value=" * " onClick="szor()">
  6. <input type="button" value=" / " onClick="oszt()"><br>
  7. <input name="ketto"><p>
  8. Eredmény: <input name="eredmeny">
  9. </form>
  10. <script>
  11. function plusz() {
  12. document.szamol.eredmeny.value = document.szamol.egy.value *1 + document.szamol.ketto.value * 1;
  13. }
  14. function minusz() {
  15. document.szamol.eredmeny.value = document.szamol.egy.value - document.szamol.ketto.value;
  16. }
  17. function szor() {
  18. document.szamol.eredmeny.value = document.szamol.egy.value * document.szamol.ketto.value;
  19. }
  20. function oszt() {
  21. document.szamol.eredmeny.value = document.szamol.egy.value / document.szamol.ketto.value;
  22. }
  23. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement