itgle.com
更多“假定有以下程序段n=0for i=1 to 4for j=3 to-1 step-1 n=n+1next jnext i运行完毕后n的值是()。A. ”相关问题
  • 第1题:

    假定有以下程序段: n=0fori=l to 3fori=4to-1n=n+1next jnext i运行完毕后,n的值是( )。 A.0S

    假定有以下程序段: n=0fori=l to 3fori=4to-1n=n+1next jnext i运行完毕后,n的值是( )。

    A.0

    B.3

    C.4

    D.12


    正确答案:C
    暂无解析,请参考用户分享笔记

  • 第2题:

    假定有以下程序段 n=0 for i=1 to 3 for j=-3 to 1 n=n+1 next j next i 运行完毕后,n的值是( )。

    A.3

    B.4

    C.12

    D.15


    正确答案:D
    解析: 本题考查的是循环的知识。本题中,外层循环从1到3,要执行3次,而内层循环从-3到1,执行5次(注意不是4次),所以一共执行了,3*5=15次内循环。而每执行一次内循环n就加1,所以最后n的值为15。

  • 第3题:

    以下程序段运行后,循环体中的 n+=3; 语句运行的次数为()。 int i,j,n=0; for(i=1;i<=3;i++) { for(j=1;j<=i;j++) { n+=3; printf("%dn",n); } }

    A.1次

    B.6次

    C.9次

    D.12次


    break

  • 第4题:

    假定有以下程序段: n=0fori=l t03forj=-3t0 1n-=n+1nextjnexti运行完毕后,n的值是( )。 A.3SX

    假定有以下程序段: n=0fori=l t03forj=-3t0 1n-=n+1nextjnexti运行完毕后,n的值是( )。

    A.3

    B.4

    C.12

    D.15


    正确答案:D
    暂无解析,请参考用户分享笔记

  • 第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的值


    A

  • 第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的值


    D