Thread N Zahlen ermitteln mit Gesamtwert 100
(44 answers)
Opened by RPerl at 2008-05-10 23:36 KurtZ+2008-05-10 22:41:35-- verschätzt, bei Gleichverteilung hast du ne 17%ige Erfolgsquote, also ca 6 Durchläufe! (trotzdem übel) Code (perl): (dl
)
1 2 3 4 5 6 7 8 for $i (0..100) { for $j (0..100) { for $k (0..100) { $c++; $s=$i+$j+$k; $d++ if $s<=100 }}} print $d/$c; TMTOWTDYOG (there's more than one way to dig your own grave)
|