Archived
1
0
This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
223 B
Java
Raw Normal View History

2021-11-19 08:07:14 +01:00
package series.C05S03_loops;
public class C05EX04c {
public static void main(String[] args) {
int foo = 10;
while (foo>=0) {
System.out.println(foo);
foo -= 3;
}
}
}