返回列表 发帖
你的算法是错误的,如果是11个,应该这么写
  1. set a=11
  2. for /l %%i in (1 1 10) do set /a a*=11
复制代码
循环1次就是2个11,循环11次就会是12个11。

TOP

返回列表