Contributed by: Ivan Jaramillo
This is the industrial way.
public class Even {
public boolean isEven(int number) {
return number % 2 == 0;
}
}Contributed by: Ivan Jaramillo
This is the industrial way.
public class Even {
public boolean isEven(int number) {
return number % 2 == 0;
}
}