Skip to content

Instantly share code, notes, and snippets.

@ninadpchaudhari
Last active April 1, 2025 22:08
Show Gist options
  • Save ninadpchaudhari/fa76e306691714d7cc35334d9774ad9d to your computer and use it in GitHub Desktop.
Save ninadpchaudhari/fa76e306691714d7cc35334d9774ad9d to your computer and use it in GitHub Desktop.
public class ConditionalLoopExample {
public static void main(String[] args) {
int x = 0;
while (x < 5) {
if (x % 2 == 0) {
System.out.println(x + " is even");
} else {
System.out.println(x + " is odd");
}
x++;
}
System.out.println("Done");
}
}
public class LoopExample {
public static void main(String[] args) {
int x = 0;
while (x < N) {
System.out.println("In loop, x = " + x);
x++;
}
System.out.println("Done");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment