【单选题】如果continue的语法为结束本次循环,继续下一次循环,则 以下程序运行结果为() public class Test { int x=10; int y=1; public static void main(String [] args) { for(int i=0;i!=x-y;i+=2) { i+=1; if(i= =5) continue; System.out.println(i);...
【单选题】设有如下程序:Private Sub Command1_Click()X = 10 : y = 0For i = 1 To 5 Do x = x-2 y = y+2 Loop Until y>5 Or x<-1NextEnd Sub运行程序,其中Do 循环执行的次数是( )。 A.15 B.10 C.7 D.3