in reply to Re: Compare two signed integers without using comparision operator in perl
in thread Compare two signed integers without using comparision operator in perl
without using the comparision operators like ==,<,> .($a == $b) ? print "equal" : ( ($a < $b) ? print "a is small" : print + "b is small");
|
|---|