Home > php教程 > php手册 > php实例:1到9之间三个数相加等于15

php实例:1到9之间三个数相加等于15

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 11:36:43
Original
1936 people have browsed it

$j = 0; $k = 0;$m = 0;
for ($i = 0;$i {
    $a1 = rand(1,9);
    $a2 = rand(1,9);
    $a3 = rand(1,9);
    if ($a1+$a2+$a3 === 15)
    {
        $m++;
        if($a1 === $a2 or $a1 === $a3 or $a2 === $a3)
        {
            echo "有重复的值".$a1."+".$a2."+".$a3."\n";
            $j++;
        }
        else
        {
            echo $a1."+".$a2."+".$a3."=15"."\n";
            $k++;
        }
    }
}
echo  "等于15的次数有".$m."次\n等于15但是有重复的次数有".$j."次\n等于15而且没有重复的次数".$k."次";

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template