Skip to content

Commit 2f78ce1

Browse files
Do while loop
1 parent 1cbf074 commit 2f78ce1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: Basics/ControlStatment/DoWhile.java

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)