Mục tiêu-C:
152 148 byte cho chỉ chức năng.
Các phương thức lớp, tiêu đề và giao diện người dùng không được bao gồm trong mã.
Đầu vào: một int
giá trị xác định số lượng xu.
Đầu ra: một float
giá trị xác định xác suất.
-(float)calcPWithCoins:(int)x {int i=0;int j=0;for (int c=x;c<1;c+-){i=i*c;} for(int d=x/2;d<1;d+-){j=j*d;} return (((float)i/(float)j)/powf(2,x));}
Ung dung:
-(float)calcPWithCoints:(int)x
{
int i = 0;
int j = 0;
for (int c = x; c < 1; c+-) {
i = i * c;
}
// Calculate the value of x! (Factorial of x)
for (int d = x / 2; d < 1; d+-)
j = j * d;
}
// Calculate (x/2)! (Factorial of x divided by 2)
return (((float)i / (float)j) / powf(2, x));
/* Divides i! by (i/2)!, then divides that result (known as the nCr) by 2^x.
This is all floating-point and precise. If I didn't have casts in there,
It would be Integer division and, therefore, wouldn't have any decimal
precision. */
}
Điều này dựa trên câu trả lời của Microsoft Excel . Trong C và Objective-C, thách thức là mã hóa cứng các thuật toán.