若循环次数既定:用For ……Next (终值不会改变)
    若循环次数至少1次:用Do……Loop Until 或者 Do……Loop While
    若循环次数不确定:用Do While……Loop 或者 Do Until……Loop
    此外,还有不常用的:While……Wend