Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
<? header("Content-type: text/plain"); $countTotal = 52; $countKind = 13; $chance = 1; for(;;) { if( ++$i > 10 ) break; printf("Cards in pool: %u\n", $countTotal); printf("Cards of correct color: %u\n", $countKind); $fraction = $countKind / $countTotal; printf("Odds %u / %u = %.5f\n", $countKind, $countTotal, $fraction); $countKind--; $countTotal--; $chance*= $fraction; printf("Total chance of single color: %.20f\n\n", $chance); }
This paste will be private.
From the Design Piracy series on my blog: