File : p03.asp. ID : 2105
Skin : Default | Sons-of-obsidian | Sunburst | Highlighter | Frame
<body><font face="courier new" size=4>
Sample : <a href=p03.asp?5>p03.asp?5</a><pre>
<%
dim max, i, j
max = 10
if len(request.querystring) > 0 then max = int(request.querystring) end if
if max > 50 then max = 9
for i =  max  to 1 step -1
  j = 1
  while j <= max
    response.write( (j+i) mod 2)
    j = j + 1
  wend
  response.write("<br>")
next
%>
</pre></body>