0% found this document useful (0 votes)
32 views1 page

Script

The document displays a multiplication table for a given number. It takes a number parameter from a request, loops from 1 to 10, and outputs each result of the number multiplied by the parameter within a table.

Uploaded by

edgardo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views1 page

Script

The document displays a multiplication table for a given number. It takes a number parameter from a request, loops from 1 to 10, and outputs each result of the number multiplied by the parameter within a table.

Uploaded by

edgardo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

[Link]("<a href='/Tabla/Inicio.

html'>Regresa</a>");

String numero = [Link] ("numero");


int n=[Link](numero);
[Link]("<html>");
[Link]("<head>");
[Link]("<title>Tabla de Multiplicar</title>");
[Link]("</head>");
[Link]("<body>");
[Link]("<table>");
for (int i=1; i<11; i++)
[Link]("<tr><td>"+i+"x"+numero+" = "+(i*n)+"</td></tr>");
[Link]("<a href='/Tabla/[Link]'>Regresa</a>");
[Link]("</table>");
[Link]("</body>");
[Link]("</html>");
}
}

You might also like