This commit is contained in:
Rémi Heredero
2021-11-19 08:07:14 +01:00
commit 4b812f019a
207 changed files with 422024 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package series.C05S03_loops;
public class C05EX04d {
public static void main(String[] args) {
int foo = 10;
do {
System.out.println(foo);
foo-=3;
} while (foo>=0);
}
}