Thread Textdatei mit Inhalt erstellen? (19 answers)
Opened by Naix at 2017-02-02 10:54

hlubenow
 2017-02-02 17:41
#186004 #186004
User since
2009-02-22
875 Artikel
BenutzerIn
[default_avatar]
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)

View full thread Textdatei mit Inhalt erstellen?