public class Solution{
public static void main(String args[]){
int i;
for(i = 1; i 5 ; i++){
if(i 2) continue;
}
System.out.println(i);
}
}
What is the output of above code?

Posted on by