<!DOCTYPE html>
<html>
<body>
<%
Dim cars(2)
cars(0)="Volvo"
cars(1)="Saab"
cars(2)="BMW"
对于每个 x 在 cars 中
response.write(x & "<br>")
下一步
%>
</body>
</html>