Thread Funktionsaufruf (15 answers)
Opened by Leave- at 2010-02-11 12:29

Gast Leave-
 2010-02-11 12:29
#132659 #132659
Hallo alle zusammen,

ich versuche gerade ein Skript auszuführen.
Anscheinend wird die Funktion Sub nicht richtig aufgerufen:

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
use strict;

my $zufallszahl;
my $eingabe;
my $a;

sub subzahlen(){
    my $rand = int (1+rand(6));
    print $rand;
    return $rand; 
}

$zufallszahl = subzahlen;
print $zufallszahl; 

print "Zufallszahl eingeben!";

while($zufallszahl != ($eingabe = <STDIN>)) {
    print "Zufallszahl falsch, bitte erneut eingeben!";
    if($zufallszahl<$eingabe) {
        print "Zu klein";
    }
    if($zufallszahl>$eingabe) {
        print "Zu groß";
    }
}


Vielen Dank für die Hilfe!

View full thread Funktionsaufruf