Thread Funktionsaufruf
(15 answers)
Opened by Leave- at 2010-02-11 12:29
Bei mir funktioniert das Programm nicht.
Den Code habe ich aber umgesetzt: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 #!/usr/bin/perl -w use strict; my $zufallszahl; my $eingabe; sub subzahlen(){ my $rand = int (1+rand(6)); print $rand; return $rand; } $zufallszahl = subzahlen; print $zufallszahl; print "Zufallszahl eingeben!"; while(chomp ($eingabe = <STDIN>)) { last if($eingabe == $zufallszahl); if($zufallszahl<$eingabe) { print "Zu klein"; } if($zufallszahl>$eingabe) { print "Zu grofl"; } } Ergebnis: 6 4 44Zufallszahl eingeben!Zu klein |