Cloudbook:
C
Home
Variables
Logicals
§ 1
↵ lesson
next →
C-O-matic
If statement
Else statement
Foreach statment
Logicals
# Try the given code to see what the value of "true" is. # Modify something so that the expression evaluates to false, # and see what the value of "false" is. $a = 5 ; $b = 6 ; ( $a==$b ) && print "The numbers are equal.\n" ; ( $a>=2 && $a<=10 ) && print "The number is in range.\n" ;
The output goes here