随笔 - 20  文章 - 7  trackbacks - 0
<2025年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

常用链接

留言簿(1)

随笔档案

文章分类

文章档案

积分与排名

  • 积分 - 20680
  • 排名 - 1708

最新评论

<%@ page language="vb" %>
<h1>循环嵌套结构</h1>
<%
Dim intA,intB As integer
For intA=1 to 10 step 1
       
For intB=1 to 10 step 1
       Response.write(intA 
& "*" & intB & "=" & intA*intB & "<br>")
    
Next intB
Next intA
%
>







For...Next里面有另一对For...Next
posted on 2006-02-11 21:34 The Game, tomtom 阅读(530) 评论(0)  编辑  收藏 所属分类: VB.NET流程控制