//Exercise 6-1
package com.mycompany.countdown;
public class Countdown {
public static void main(String[] args) {
//part 1
for (int i = 0; i <= 5; i++) {
System.out.println("" + i);
}
System.out.println("");
//part 2
for (int i = 0; i <= 20; i++) {
int evenorodd = i%2;
if (evenorodd == 0) {
System.out.println("" + i);
}
}
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter