Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 240 Bytes

File metadata and controls

14 lines (11 loc) · 240 Bytes

Java

The short way

Contributed by: Ivan Jaramillo

This is the industrial way.

public class Even {
    public boolean isEven(int number) {
        return number % 2 == 0;
    }
}