Which statement will be executed after \"continue\" or \"break\" ?
for(int i = 0; i < count; ++i) { // statement1
continue: ++j and then if j < count then statement2 otherwise statement3
++j
j < count
statement2
statement3
break: statement3