<%
for(inti=0;i>3;++i;)
sop(i);
%>
%
Answer Posted / paul z
There appears to be a space missing after the int in the for(inti=0;.... but you do not need the int anyway so should read for(i = 0; i > 3; i++).
I am assuming you want i to increment taking the values 0,1,2,3
| Is This Answer Correct ? | 2 Yes | 5 No |
Post New Answer View All Answers