- <html>
- <head>
- <title> PGCD euclide paramétrée</title>
- <meta charset="utf-8">
- <?php
- $a=$_GET["a"];
- $b=$_GET["b"];
- 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>
-
-
-