Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <html>
  2. <head>
  3. </head>
  4.  
  5. <body>
  6. <form>
  7. Podaj temperature:<input type="text" id="a">
  8.  
  9. </form>
  10. <button onclick="faren()">faren</button>
  11. <button onclick="calvin()">calvin</button>
  12. <div id="wynik"> </div>
  13. <script>
  14. var x = Number(document.getElementById("a").value);
  15.  
  16.  
  17.  
  18.  
  19. function faren()
  20. {
  21. var stopnie = (x * 1,8) + 32;
  22. document.getElementById("wynik").innerHTML=stopnie;
  23.  
  24.  
  25.  
  26. }
  27. </script>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement