Problem 70

Noticing Even Numbers

Write a program that uses a for loop to display all the numbers from 1 to 20, marking those which are even (divisible by two). Use modulus 2 (% 2): if the remainder is zero, it’s divisible by 2.

This means you’ll need an if statement inside the loop.

for ( <stuff> ) {
    if ( <something with modulus> ) {
        System.out.println( <something> );
    } else {
        System.out.println( <something different> );
    }
}
1
2 <
3
4 <
5
6 <
7
8 <
9
10 <
11
12 <
13
14 <
15
16 <
17
18 <
19
20 <

◄ 69: Xs and Ys 71: Fizz Buzz ►



Adapted from ProgrammingByDoing.com
©2013 Graham Mitchell

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.