blob: de14b26eb9c3d8bd8b4ff2f781a4d983c1b0585f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import java.io.*;
public class Task2 {
public static void main(String[] arguments) throws IOException {
for (int i = 20; i >= 0; i = i - 2) {
System.out.print(i);
System.out.print(' ');
}
System.out.println();
}
}
|