Thread Schilling in Euro umrechnen (13 answers)
Opened by lolipop 999 at 2006-04-07 10:21

Dubu
 2006-04-07 12:50
#64502 #64502
User since
2003-08-04
2145 Artikel
ModeratorIn + EditorIn

user image
[quote=lolipop 999,07.04.2006, 08:21]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!c:/perl/bin/perl -w

$eing = 0;

print "\nBitte geben Sie Oes ein:\n";
chomp ($eing = <STDIN>);
my($kurs)= 13.7603;

if ($eing >= 0)
    {
printf ("Euro von %d ist %.4f.\n", $eing, /$kurs  $eing); (LINE 11)
    }
print "Ende des Skripts.\n";

[/quote]
/$kurs  $eing ist keine gültige Perl-Syntax (wie renee schon bemerkte). Meinst du vielleicht $eing / $kurs?

View full thread Schilling in Euro umrechnen