Thread Textdatei mit Inhalt erstellen?
(19 answers)
Opened by Naix at 2017-02-02 10:54
Warum liest Du aus "input.txt"?
So wie ich das verstehe, ist einfach dies gewollt: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/usr/bin/perl use warnings; use strict; open(my $fh, ">", "output.txt") or die; my $i; my $r; for($i=0; $i<=3; $i++) { $r = int(rand(10)); print "$r\n"; print $fh "$r\n"; } close($fh); Last edited: 2017-02-02 17:42:38 +0100 (CET) |