Thread Probleme bei Zuallszahlen (9 answers)
Opened by Gast at 2007-06-17 23:20

styx-cc
 2007-06-18 01:46
#77599 #77599
User since
2006-05-20
533 Artikel
BenutzerIn

user image
So sollte es funktionieren:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl -w
use strict;

my @zufallszahlen;
#zufallszahlen hinzufügen
for (0..9) {
push @zufallszahlen, int(rand(101));
#print $_+1 .") $zufallszahlen[$_]\n";
}
print "-"x30 ."\n";

#zahlen abgleichen und ausgeben
for my $curr (@zufallszahlen) {
my $i = 0;
for(@zufallszahlen) {
$i++ if ($curr == $_);
}
print "$curr kommt $i mal vor.\n";
}

#kein kommentar:
dein code gibt bei mir komische sachen aus

MfG\n\n

<!--EDIT|styx-cc|1182116995-->
Pörl.

View full thread Probleme bei Zuallszahlen