Thread Hochzählen, bei einer bestimmten Zahl stopppen und die 5-stellige Zahl generieren.
(9 answers)
Opened by alla at 2009-10-19 10:48 Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #!/usr/bin/perl use warnings; use strict; use feature qw( say ); while(my $line = <DATA>) { chomp $line; my $zahl = sprintf("%05s", $line); say $zahl; } # while __DATA__ 506 200 |