Thread N Zahlen ermitteln mit Gesamtwert 100
(44 answers)
Opened by RPerl at 2008-05-10 23:36
Meine Loesung waer so:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #!/usr/bin/perl use strict; use warnings; my $sum; while($sum != 100) { my $zahl1 = int rand(100); my $zahl2 = int rand(100); my $zahl3 = int rand(100); $sum = ($zahl1 + $zahl2 + $zahl3); if($sum == 100) { print "\t" . "=>" . "$zahl1 " . "$zahl2 " . "$zahl3" } } aber ist das nicht ineffizient? |