【简答题】Java语言的跳转语句有3种:continue、break、和 。
【简答题】使用 continue 和 break 语句 (1)计算1+3+ 5...+9; (2)输出100以内的素数。
【简答题】(3-3)continue和break语句都 能在( )语句中使用 ,此外 break 语句还可以在( )语句中使用。
【单选题】—Who is he? —_____. [ ]
【简答题】Java中有3种跳转语句:break语句、continue语句和( )语句。
【简答题】java中有3中跳转语句分别是:break、continue 和___________语句
【单选题】关于 break 语句和 continue 语句的使用结果,正确的是:
A.
int a=1; for(;a<10;a++) { if(a%3==0) break; printf("%d ",a);} 执行结果是 1 2 3
B.
int a=1; for(;a<10;a++) { if(a%3==0) continue; printf("%d ",a);} 执行结果是 1 2 4 5 7 8
C.
int a=1; while(a<10) { while(a>6){ break; } printf("%d ",a); a++;} 执行结果是 1 2 3 4 5 6
D.
int a=1; while(a<10) { while(a>6){ continue; } printf("%d ",a); a++;} 执行结果是 1 2 3 4 5 6 7 8 9
【判断题】所有授予出去的权力在必要时都可用 REVOKE语句收回 。( )