This notebook is a collection of code snippets and technical "how to" instructions.
public static boolean isEven(int x)
{
return (x % 2) == 0;
}
No comments:
Post a Comment