下列程序运行后的输出结果是( )。 public class Sun { public static void main (String args[ { int i,j,s; s=0;

admin2010-02-22  13

问题 下列程序运行后的输出结果是(    )。     public class Sun    {      public static void main (String args[      {        int i,j,s;        s=0;        for (i=1;i<=3;i++)          for(j=0;j<=i-1;j++)           s=s+1;        System.out.println(s);      }    }

选项 A、6
B、5
C、4
D、3

答案1

解析 本题考查对for循环语句理解。第1重for循环共有3次,第2重for循环共有2次,所以总共执行6次循环,每次循环s的值加1,因此s=6。故本题答案是A。
转载请注明原文地址:https://kaotiyun.com/show/KSnp777K
0

最新回复(0)