Thread Kommas: Loeschen (50 answers)
Opened by format_c at 2004-06-11 16:54

Gast Gast
 2004-06-18 14:10
#83296 #83296
Code: (dl )
1
2
3
4
5
6
7
8
9
my $a = 0;
my $b = 0;
my $c = 1;

print "true1\n" if $a and $b or $c;
print "true2\n" if $a and ($b or $c);
print "true3\n" if ($a and $b) or $c;
print "true4\n" if $a and $b || $c;
print "true5\n" if ($a and $b) || $c;
Antworten mit Zitat

View full thread Kommas: Loeschen