Thread Schilling in Euro umrechnen
(13 answers)
Opened by lolipop 999 at 2006-04-07 10:21
[quote=lolipop 999,07.04.2006, 12:14]das so abgewandelt
printf ("Euro von %d ist %.4f.\n", $eing, / $kurs);[/quote] wie machst du das im mathe-unterricht? du willst a durch b teilen. du schreibst: a / b du schreibst sicher nicht a, / b wenn du in perl $eingabe durch $kurs teilen willst, schreibst du eben $eingabe / $kurs. und nicht $eingabe, / $kurs du hast jetzt auf printf verzichtet und dafür endlich das geteilt-durch korrekt hingekriegt: $euro = $schilling / $kurs; aber ich verstehe nicht, wieso du auf printf verzichtest. nebenbei zwei ganz heiße tips: perldoc perlintro use strict Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |