Problème javascript et fractale

Fermé
omesh Messages postés 11 Date d'inscription samedi 10 mai 2008 Statut Membre Dernière intervention 13 juin 2009 - 2 juin 2008 à 03:00
linuxakros Messages postés 114 Date d'inscription mercredi 9 avril 2008 Statut Membre Dernière intervention 15 octobre 2008 - 2 juin 2008 à 07:11
Bonjour, j'ai trouver le code Javasript suivant et il ne fonctionne pas pourriez-vous me dirre ou sont les erreurs svp.


<html>
<head>
<title>fractale</title>
</head>
<body bgcolor="#000000">
<pre><b>
<script langage="JavaScript"><!--
for(y=-11;y<12;y++)
{

for(x=-39;x<40; x++)
{
cr=x/30-.5;
ci=y/12;
zr=zi=b=0;

while((++b<64)&&(zr*zr+zi*zi<100))
{
xr=zr*zr-zi*zi+cr;
xi==2*zr*zi+ci;
zr=xr;
zi=xi;
}

b='0479ABCDDEEEEFFF0'.substr(b/4,1);
document.write('<font color=#ffffff'+b+b+'00>#</font>')

}
document.write('\n')

}


//--></script>
</b></pre>
</body>
</html>

1 réponse

linuxakros Messages postés 114 Date d'inscription mercredi 9 avril 2008 Statut Membre Dernière intervention 15 octobre 2008 19
2 juin 2008 à 07:11
Bonjour,
il y a un "=" en trop ici xi==2*zr*zi+ci;
et remplace
document.write('<font color=#ffffff'+b+b+'00>#</font>')
par
document.write('<font color=#ffffff>'+b+'</font>') par exemple
Bonne journée.
0