You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
282 B

int test(int a, int b) {
int i = 0;
while (i <= 10) {
i = i + 1;
}
if ( i == 11 ) {
break;
}
return 1;
}
int main() {
int c = test(1,1);
continue;
return 0;
}
// Continue not in loop break语句不在循环中