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

lolipop 999
 2006-04-07 14:38
#64505 #64505
User since
2006-04-07
150 Artikel
BenutzerIn
[default_avatar]
Hallo
ich habe eine andere Lösung gefunden:

#!c:/perl/bin/perl -w

use Math::Trig;


print <<HERE_TEXT;

Berechnung von Oes in Euro:

Euro berechnen <1>

HERE_TEXT

$eingabe = 0;
$kurs = 13.7603;
$schilling = 0;

chomp ($eingabe = <STDIN>);

if ($eingabe == 1)
{
print "Bitte geben Sie Oes:\n";
chomp ($schilling = <STDIN>);
$euro = $schilling / $kurs;
print "\nEuro: $euro\n";
}


FUNKTIONIERT UND GETESTET

mfg

lolipop 999

View full thread Schilling in Euro umrechnen