Last active
April 1, 2025 22:08
-
-
Save ninadpchaudhari/fa76e306691714d7cc35334d9774ad9d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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