for m=0 to 7step 3 for n=1 to 3 next n next m 求内循环总次数 具体过程
问题描述:
for m=0 to 7step 3 for n=1 to 3 next n next m 求内循环总次数 具体过程
答
因为是嵌套for语句.里边的for循环默认步长为1 所以循环3次,也就算n的值是 1,2,3.外边的for循环步长为3(step 3).因此m的值是 0,2,5当m值为0时 执行一次n的for循环.1*3次当m值为2时 执行一次n的for循环.1*3次当m值为5...