[单项选择题] 下面程序段的输出结果是()。public class Test public static void main (String[) args) int a,b;for(

[单项选择题] 下面程序段的输出结果是()。public class Test public static void main (String[) args) int a,b;for(,第1张

[单项选择题] 下面程序段的输出结果是( )。 public class Test public static void main (String[) args) int a,b; for(

[单项选择题] 下面程序段的输出结果是( )。

public class Test

public static void main (String[) args)

int a,b;

for(a=1,b=1;a<=100;a++)

if (a>=10 ) break;

if (b%2==1)

b+=2;

continue;

System. out. pdntln(a);

A. 7

B. 8

C. 9

D. 10

正确答案:

D

参考解析:

虽然程序中的for循环是变量a从1到100,但程序中a=10时,遇到break语句,退出循环,所以退出循环后a=10,选择D。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5469231.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存