1. <html>
  2. <head>
  3. <title> PGCD euclide paramétrée</title>
  4. <meta charset="utf-8">
  5. <?php
  6. $a=$_GET["a"];
  7. $b=$_GET["b"];
  8. function euclide($a,$b){
  9. while ($a != $b){
  10. if ($a>$b){
  11. $a=$a-$b;
  12. }else{
  13. $b=$b-$a;
  14. }
  15. }
  16. return $a;
  17. }
  18. ?>
  19. </head>
  20. <body>
  21. <h1> Le PGCD de
  22. <?php
  23. echo $a;
  24. ?>
  25. et de
  26. <?php
  27. echo $b;
  28. echo " vaut : ";
  29. $pgcd=euclide($a,$b);
  30. echo $pgcd;
  31. if ($pgcd==1){
  32. echo ". Ils sont premiers entre eux !";
  33. }
  34. ?>
  35. </h1>
  36. </body>
  37. </html>