Thread prüfen auf ganze zahl mit perl (36 answers)
Opened by skontox at 2009-11-22 00:33

pktm
 2009-11-27 14:36
#128631 #128631
User since
2003-08-07
2921 Artikel
BenutzerIn
[Homepage]
user image
Linuxers Frage mal anders formuliert: Was glaubst du, macht dein Code?
Er prüft jedenfalls nicht auf ganze Zahlen. Das kannst du aber auch einfach ausprobieren.
Reduziere deine Problemstellung auf genau den Test auf eine ganze Zahl:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use strict;
use warnings;

my $zahl = 5.7;

if(int($zahl)) {
print "ganze Zahl\n";
}else{
print "keine ganze Zahl\n";
}


Bei mir steht da "ganze Zahl", was 5,7 aber nicht ist.

Grüße, pktm
http://www.intergastro-service.de (mein erstes CMS :) )

View full thread prüfen auf ganze zahl mit perl