in reply to Re: cv = (irand(2))?"+":"-";
in thread cv = (irand(2))?"+":"-";
It works:
sub example { do { $av = irand(11) + 10; $bv = irand(11); $cv = irand(2) ? "+" : "-"; } until ( !( $av - $bv < 0 || $av + $bv >= 20 ) ); print $av. $cv . $bv . " = \n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: cv = (irand(2))?"+":"-";
by kennethk (Abbot) on Apr 05, 2016 at 16:22 UTC |