fork download
  1. (define(fatorial n)
  2. (if (= n 0) 1
  3. (* n (fatorial(- n 1)))))
  4.  
  5. (define (comb n p)
  6. ((/ (fatorial n) (* (fatorial p) (- (fatorial n) (fatorial p))))))
  7.  
  8.  
  9. (write (comb 4 2))
Runtime error #stdin #stdout 0.02s 4176KB
stdin
Standard input is empty
stdout
Standard output is empty