当前位置:Gxlcms > PHP教程 > PHP大数相加php大作业php大括号php大文件上

PHP大数相加php大作业php大括号php大文件上

时间:2021-07-01 10:21:17 帮助过:13人阅读

$a = '234567890';
    $b = '111111111111101';
    $m = strlen($a);
    $n = strlen($b);
    $num = $m>$n?$m:$n;
    $result = '';
    $flag = 0;
    while($num--){
        $t1 = 0;
        $t2 = 0;
        if($m>0){
            $t1 = $a[--$m];
        }
        if($n>0){
            $t2 = $b[--$n];
        }
        $t = $t1+$t2+$flag;
        $flag = $t/10;
        $result = ($t%10).$result;
    }
    echo$result;
    echo"\r\n";
    echo$a+$b;

?>

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了PHP 大数相加,包括了php,大数方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行