+91-85006-22255
What will be the output of the following program?
class Continue{ public static void main(String S[]) { for(int i = 0; i <= 3; i++) { if(i == 2) continue; System.out.println(i); } }}
Topic: Learn Arrays And Loops
Read this topic Take test on this topic
Open In App