Nessun risultato. Prova con un altro termine.
Guide
Notizie
Software
Tutorial

Ricordando le tabelline

Con questo script è possibile ricreare in forma testuale la tabella delle moltiplicazioni.

<%
function tabella(intMax)
for ctInd= 1 to intMax
response.write "<br> "
for ctInd2= 1 to intMax
response.write ctInd * ctInd2 & " "
next
next
end function

call tabella(10)
%>

Con questo script è possibile ricreare in forma testuale la tabella delle moltiplicazioni.

<%
function tabella(intMax)
for ctInd= 1 to intMax
response.write "<br> "
for ctInd2= 1 to intMax
response.write ctInd * ctInd2 & " "
next
next
end function

call tabella(10)
%>

Link copiato negli appunti

Con questo script è possibile ricreare in forma testuale la tabella delle moltiplicazioni.

<%

function tabella(intMax)

for ctInd= 1 to intMax

response.write "<br> "

for ctInd2= 1 to intMax

response.write ctInd * ctInd2 & " "

next

next

end function

call tabella(10)

%>