Help for this page

Select Code to Download


  1. or download this
    my $i = my $x = (split(/\./, '205.0.0.0'))[0];
    my $j = my $y = (split(/\./, '123.0.0.0'))[0];
    ...
    
    print("$i & $j = $ij\n");  # 205 & 123 = 001
    print("$x & $y = $xy\n");  # 205 & 123 = 73