Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- </head>
- <body>
- <div align=center>
- <table border="1">
- <tr>
- <th>Number</th>
- <th>Square</th>
- <th>Cube</th>
- </tr>
- <script>
- for(i=0;i<=10;i++){
- document.write("<tr><td>"+i+"</td><td>"+(i*i)+"</td><td>"+(i*i*i)+"</td></tr>");
- }
- </script>
- </table>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement