We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cbf074 commit 2f78ce1Copy full SHA for 2f78ce1
Basics/ControlStatment/DoWhile.java
@@ -0,0 +1,7 @@
1
+public class DoWhileExample2 {
2
+ public static void main(String[] args) {
3
+ do{
4
+ System.out.println("infinitive do while loop");
5
+ }while(true);
6
+ }
7
0 commit comments