The loop runs till the value?
Public class Solution{
Public static void main(String args[]){
Int i;
for(i = 1; i 20; i++){
if(i 3) continue;
}
System.out.println(i);
}
}

Posted on by