What is the output of the following code snippet?
for (int m = 0; m if (m == 2) {
continue;
}
System.out.print(m + " ");
}
continue;
}
System.out.print(m + " ");
}
What is the output of the following code snippet?for (int m = 0; m if (m == 2) { Correct Answer 0 1 3 4
continue;
}
System.out.print(m + " ");
}
মোঃ আরিফুল ইসলাম
Feb 20, 2025