假定有以下程序段 n=0 for i=1 to 3 for j=-4 to -1 n=n+1 next j next i 运行完毕后,n的值是( )。
A.0
B.3
C.4
D.12
第1题:
假定有以下程序段 n=0 for i=1 to 3 for j=-4 to -1 n=n+1 next j next i 运行完毕后,n的值是(. )
A.0
B.3
C.4
D.12
第2题:
假定有以下程序段: n=0fori=l t03forj=-3t0 1n-=n+1nextjnexti运行完毕后,n的值是( )。
A.3
B.4
C.12
D.15
第3题:
计算运行下列程序段后m的值: Calculate the value of m after running the following program segment n = 9; m = 0; for (i=1;i<=n;i++) for (j = 2*i; j<=n; j++) m=m+1; 求m的值
第4题:
假定有以下程序段: n=0fori=lt04forj=3 to一1 step一1n=n+lnextjnexti运行完毕后,ll的值是( )。
A.12
B.15
C.16
D.20
第5题:
6、计算运行下列程序段后m的值: Calculate the value of m after running the following program segment n = 9; m = 0; for (i=1;i<=n;i++) for (j = 2*i; j<=n; j++) m=m+1; 求m的值