[填空题] 设有数组定义:int a[]={11,22,33,44,55,66,77,88,99 };则执行下列程序段后的输出结果是 ______ 。 for(int i=0;i<a. length ;i++) if (a[i]%3==0)System.out.println(a[i]+" ");
正确答案:33 66 99

[填空题] 设有数组定义:int a[]={11,22,33,44,55,66,77,88,99 };则执行下列程序段后的输出结果是 ______ 。 for(int i=0;i<a. length ;i++) if (a[i]%3==0)System.out.println(a[i]+" ");
正确答案:33 66 99
上一篇 [单项选择题] 设a="a",b="b",C="C",d="d",执行语句X=IIF((a<b)Or(C>d),&quo
下一篇 [单项选择题] 若a的值为3时,下列程序段被执行后,c的值是( )。 int c = 1; if (a>0)if (a>3) c = 2;else c = 3; else c