jueves, 9 de marzo de 2017

Escribir el cuadrado del 1 al 10

<html>
    <head>
    </head>
    <body>
            <script type="text/javascript">
        var i;
        for (i=1;i<=10;i++)
        document.write(i*i,',');
       

       
            </script>
    </body>

</html>

No hay comentarios:

Publicar un comentario