- <html>
- <head>
- <title> PGCD euclide </title>
- <meta charset="utf-8">
- <?php
- $a=rand(1,1000);
- $b=rand(1,1000);
- function euclide($a,$b){
- while ($a != $b){
- if ($a>$b){
- $a=$a-$b;
- }else{
- $b=$b-$a;
- }
- }
- return $a;
- }
- ?>
- </head>
- <body>
- <h1> Le PGCD de
- <?php
- echo $a;
- ?>
- et de
- <?php
- echo $b;
- echo " vaut : ";
- $pgcd=euclide($a,$b);
- echo $pgcd;
- if ($pgcd==1){
- echo ". Ils sont premiers entre eux !";
- }
- ?>
- </h1>
- </body>
- </html>
-
-
-