to the best!
int bino(int n, int r) { if (r == 0 || n == r)) return 1; return bino(n-1, r-1) + bino(n-1, r); }
댓글 쓰기
댓글 없음:
댓글 쓰기