public interface Binomial { /** * Bereken de binomiaalcoƫfficiƫnt C(n, k) */ int binomialCoefficient(int n, int k); }