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

Disegnare un triangolo

Grazie a questo script è possibile disegnare un triangolo di lato variabile.

<%
function disegna(intLung)
for ctInd=1 to intLung
for ctInd2=1 to ctInd
disegna=disegna & "|"
next
disegna=disegna & "<br>"
next
end function
response.write disegna(10)
%>

Grazie a questo script è possibile disegnare un triangolo di lato variabile.

<%
function disegna(intLung)
for ctInd=1 to intLung
for ctInd2=1 to ctInd
disegna=disegna & "|"
next
disegna=disegna & "<br>"
next
end function
response.write disegna(10)
%>

Link copiato negli appunti

Grazie a questo script è possibile disegnare un triangolo di lato variabile.

<%

function disegna(intLung)

for ctInd=1 to intLung

for ctInd2=1 to ctInd

disegna=disegna & "|"

next

disegna=disegna & "<br>"

next

end function

response.write disegna(10)

%>