tei123

proste strona

Nov 3rd, 2016
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <link rel="stylesheet" type="text/css" href="styl.css">
  5. </head>
  6. <body>
  7. <i>
  8. <div id=glow>
  9. <div id=ban>
  10. <a href="index.html" ><img src="baner.jpg" width='100%'></a>
  11. </div>
  12.  
  13. <div id=trs>
  14. <script>
  15. function dod()
  16. {
  17. var a,b,c,d,e,f;
  18. a=document.getElementById("p1").value;
  19. b=document.getElementById("p2").value;
  20. if (a==""||b=="")
  21. alert("uzlupelnij")
  22. else
  23. {
  24. a=parseInt(a);
  25. b=parseInt(b);
  26. alert(a+b);
  27. }
  28.  
  29. }
  30.  
  31. function ode()
  32. {
  33. var a,b,c,d,e,f;
  34. a=document.getElementById("p1").value;
  35. b=document.getElementById("p2").value;
  36. if (a==""||b=="")
  37. alert("uzlupelnij")
  38. else
  39. {
  40. a=parseInt(a);
  41. b=parseInt(b);
  42. alert(a-b);
  43. }
  44.  
  45. }
  46.  
  47. function mno()
  48. {
  49. var a,b,c,d,e,f;
  50. a=document.getElementById("p1").value;
  51. b=document.getElementById("p2").value;
  52. if (a==""||b=="")
  53. alert("uzlupelnij")
  54. else
  55. {
  56. a=parseInt(a);
  57. b=parseInt(b);
  58. alert(a*b);
  59. }
  60.  
  61. }
  62. function dzi()
  63. {
  64. var a,b,c,d,e,f;
  65. a=document.getElementById("p1").value;
  66. b=document.getElementById("p2").value;
  67. if (a==""||b=="")
  68. alert("uzlupelnij ")
  69. else
  70. {
  71. if (b=="0")
  72. {
  73. alert("b nie moze byc zerem")
  74. }
  75. else{
  76. a=parseInt(a);
  77. b=parseInt(b);
  78. alert(a/b);
  79. }
  80. }
  81.  
  82. }
  83. </script>
  84.  
  85. </head>
  86.  
  87. <body>
  88.  
  89. <center>
  90.  
  91. <h1>
  92. PROSTE DZIALANIA
  93. </H1>
  94. <br>
  95.  
  96. <i>
  97. Podaj pierwsza liczbe
  98. <input id="p1"/>
  99. <br>
  100. Podaj druga liczbe
  101. <input id="p2"/>
  102. </i>
  103. <br>
  104.  
  105. <button onClick="dod()">DODAWANIE</button>
  106. <button onClick="ode()">ODEJMOWANIE</button>
  107. <button onClick="mno()">MNOZENIE</button>
  108. <button onClick="dzi()">DZIELENIE</button>
  109.  
  110.  
  111. </div>
  112.  
  113. <div id=men>
  114. <br>
  115. <br>
  116. <br>
  117. <br>
  118. <br>
  119. Menu <br>
  120. <a href="proste.html">- proste działania</a>
  121. <br>
  122. <a href="pot.html">- potęgowanie</a>
  123.  
  124. </div>
  125.  
  126.  
  127.  
  128.  
  129. </div>
  130. </body>
  131.  
  132. </html>
Add Comment
Please, Sign In to add comment