Solucio escacs php

De wikiserver
Dreceres ràpides: navegació, cerca

<source lang="php">

<!DOCTYPE html> <html>

   <head>
       <title>ESCACS</title>
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   </head>
   <body>

TABLERO DE AJEDREZ DINÁMICO

<?php for($x=0; $x<9;$x++){ echo ""; for($i=0; $i<9;$i++){ if(($x+$i)%2){ echo "";
                   }
                   else{
echo "";
                   }
               }
echo ""; }  ?>
   </body>

</html> <source>