Name: Anonymous 2012-10-29 14:32
CHALLENGE: Implement the multifactorial function:
Make your code AS LONG AS POSSIBLE, adding in as much enterprisey bullshit as you can. Entries will be evaluated for length, enterprise quality, creativity and humor. The deadline is 2012-05-11, 00:00 UTC. Good luck!
int multifact(int n, int x) {
int prod = 1;
while (x > 0) { prod *= x; x -= n; }
return prod;
}Make your code AS LONG AS POSSIBLE, adding in as much enterprisey bullshit as you can. Entries will be evaluated for length, enterprise quality, creativity and humor. The deadline is 2012-05-11, 00:00 UTC. Good luck!