请回答下面程序的 while 循环会循环多少次,并写出运行结果 public class Test { public static void main(String[] args) { int i = 1; while (i < 10) { if ((i++) % 2 == 0) { System.out.println(i); } } } }
时间: 2024-02-25 13:57:51 浏览: 69
这个 while 循环会执行 5 次。因为初始值为 1,当 i = 9 时,i++ 后的值为 10,不满足 i < 10 的条件,循环结束。运行结果为:
```
3
5
7
9
```
相关问题
下列程序运行后输出的结果是 public class Test { public static void main(String{] args) int a = 0; while (a < 10) ‹ switch (a) f case O: case 1: a = a + 2: case 2: case 3: a = a + 3; break; default:a = a + 5;
这段代码是无法通过编译的,因为其中有多处语法错误。下面是修正后的代码:
```java
public class Test {
public static void main(String[] args) {
int a = 0;
while (a < 10) {
switch (a) {
case 0:
case 1:
a = a + 2;
break;
case 2:
case 3:
a = a + 3;
break;
default:
a = a + 5;
break;
}
}
System.out.println(a);
}
}
```
上述代码的输出结果是 15。
public class Test{ public static void main(String[] args){ int times=0; while(int i=0;i<100;i++) increment(times); System.out.println(times); } public static void increment(int times) times++; }为什么times等于0
这段代码中,times初始值确实为0,但在调用increment方法时,传递给该方法的是times的副本,而不是原始的times变量。所以,increment方法中对副本的修改不会影响原始的times变量。因此,无论increment方法执行多少次,原始的times变量仍然保持为0,并且最终输出的结果也是0。如果要让程序输出100,可以将increment方法修改为返回修改后的值,并在main方法中接收返回值并更新times变量。
阅读全文