476179

7.2ActC1

Nov 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>7 challenge #1</title>
  6. </head>
  7. <body>
  8. <h3><b>F = C</b></h3>
  9. <script>
  10. var f = 19;
  11. while (f <= 39)
  12. {
  13. document.write(f +" = "+Math.round(f -35 * 5 / 9 )+"<br>");
  14. f ++;
  15. }
  16.  
  17. </script>
  18. </body>
  19.  
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment