Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script>
- var a,b,c,d,e;
- function suma()
- {
- a=document.getElementById("l1").value;
- b=document.getElementById("l2").value;
- a=parseInt(a);
- b=parseInt(b);
- c=a+b;
- document.getElementById("wynik").value=c;
- };
- function por()
- {
- a=document.getElementById("l1").value;
- b=document.getElementById("l2").value;
- a=parseInt(a);
- b=parseInt(b);
- if (a>b)
- c="a jest wieksze od b";
- else if(a==b)
- c="a jest rowne b";
- else
- c="b jest wieksze od a";
- document.getElementById("wynik").value=c;
- }
- function nwd()
- {
- a=document.getElementById("l1").value;
- b=document.getElementById("l2").value;
- a=parseInt(a);
- b=parseInt(b);
- while (a>b)
- {
- a=a-b;
- if (a==b)
- {
- c=a;
- }
- }
- while (a<b)
- {
- d=a;
- e=b;
- b=d;
- a=e;
- a=a-b;
- if (a==b)
- {
- c=a;
- }
- }
- document.getElementById("wynik").value=c;
- if (a==b)
- {
- c=a;
- }
- document.getElementById("wynik").value=c;
- }
- </script>
- </head>
- <body>
- <center>
- Liczba 1:
- <input id="l1"> </input>
-      
- Liczba 2:
- <input id="l2">
- </input>
- <br>
- <button onclick="nwd()"> NWD </button>
- <button onclick="suma()"> SUMA </button>
- <br>
- <button onclick="por()"> POROWNANIE </button>
- <br>
- <br>
- Wynik:
- <br>
- <input id="wynik"> </input>
- <center>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement