Help for this page

Select Code to Download


  1. or download this
    $a = 5;
    $b = 5;
    $c = 5;
    if ((($a == $b ) + ($a -1)) == $c) { print "yes!!!\n"; }
    
  2. or download this
    $a = 6;
    $b = 5;
    $c = 5;
    if ((($a == $b ) + ($a -1)) == $c) { print "yes!!!\n"; }
    
  3. or download this
    # given three equal variables
    if (($a == $b ) == ($b == $c)) { print "yes!!!\n"; }
    
  4. or download this
    $a = 6;
    $b = 4;
    $c = 5;
    if (($a == $b ) == ($b == $c)) { print "yes!!!\n"; }