我是PHP dev,我很想知道,有人是否能够帮助我把这一法典变成一个Perl文字。
I wrote this PHP code today:
<?php
for ($i = 1; $i > $i++; $i++) {
$cut = strlen($i)/2;
$a = substr($i,0,$cut);
$b = strrev($a);
$som = $a + $b;
if((strrev($a) == $b) && (strrev($som) == $som) && ($a > 10000)) {
echo $a . " + " . $b . " = " . $som . "
";
}
}
?>
它做的是:
如果你铭记这一公式:美元+美元b = 美元,基本不变。
- Cuts $i in half, reverses the 2st part and stores into $b, and stores the first part unreversed into $a.
- Adds $a and $b into $c, and checks if $c equals $c in reverse.
产出:
1248 + 8421 = 9669
如果任何人能够帮助我:
先进。