Thread Zahlen vergleichen ( Account freischalten)
(7 answers)
Opened by Gast at 2007-08-02 10:14 Gast+2007-08-02 08:14:06-- Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 my $x = '.025%'; my $y = '.030%'; $x =~ s/%//; $y =~ s/%//; if ($x < $y) { print "$x ist kleiner als $y\n"; } else { print "$x ist größer als $y\n"; } Ausgabe .025 ist kleiner als .030 What is a good module? That's hard to say.
What is good code? That's also hard to say. One man's Thing of Beauty is another's man's Evil Hack. |