Advertisement
tei123

sprawdzian joanna chuj-ryz

Oct 13th, 2016
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script>
  4. var a,b,c,d,e;
  5.  
  6. function suma()
  7. {
  8. a=document.getElementById("l1").value;
  9. b=document.getElementById("l2").value;
  10. a=parseInt(a);
  11. b=parseInt(b);
  12. c=a+b;
  13. document.getElementById("wynik").value=c;
  14. };
  15.  
  16. function por()
  17. {
  18. a=document.getElementById("l1").value;
  19. b=document.getElementById("l2").value;
  20. a=parseInt(a);
  21. b=parseInt(b);
  22.  
  23. if (a>b)
  24. c="a jest wieksze od b";
  25. else if(a==b)
  26. c="a jest rowne b";
  27. else
  28. c="b jest wieksze od a";
  29.  
  30.  
  31. document.getElementById("wynik").value=c;
  32. }
  33.  
  34. function nwd()
  35. {
  36. a=document.getElementById("l1").value;
  37. b=document.getElementById("l2").value;
  38. a=parseInt(a);
  39. b=parseInt(b);
  40.  
  41. while (a>b)
  42. {
  43. a=a-b;
  44. if (a==b)
  45. {
  46. c=a;
  47. }
  48. }
  49.  
  50. while (a<b)
  51. {
  52.  
  53. d=a;
  54. e=b;
  55. b=d;
  56. a=e;
  57.  
  58. a=a-b;
  59.  
  60. if (a==b)
  61. {
  62. c=a;
  63. }
  64. }
  65. document.getElementById("wynik").value=c;
  66.  
  67.  
  68. if (a==b)
  69. {
  70. c=a;
  71. }
  72.  
  73. document.getElementById("wynik").value=c;
  74. }
  75. </script>
  76. </head>
  77. <body>
  78.  
  79. <center>
  80. Liczba 1:
  81. <input id="l1"> </input>
  82. &nbsp &nbsp &nbsp
  83. Liczba 2:
  84. <input id="l2">
  85. </input>
  86. <br>
  87. <button onclick="nwd()"> NWD </button>
  88. <button onclick="suma()"> SUMA </button>
  89. <br>
  90. <button onclick="por()"> POROWNANIE </button>
  91. <br>
  92. <br>
  93. Wynik:
  94. <br>
  95. <input id="wynik"> </input>
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111. <center>
  112.  
  113. </body>
  114. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement