Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package mattroseb8wk2;
- public class Day09D {
- public static void main(String[] args) {
- int limit = 0;
- while (limit <= 20) {
- System.out.println(limit);
- limit++;
- }
- System.out.println("-----***-----");
- limit = 10;
- do {
- System.out.println(limit);
- limit--;
- } while (limit >= 0);
- for (int i = 0; i < 10; i++) {
- System.out.println("counting: " + i);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment