Nick: Zipper75 Oggetto: re:GVQXQXALCHGTXYIZKW Data: 15/1/2004 13.5.13 Visite: 83
ma è impossibile cifrarlo troppe variabili alfabeto = 'ABCDEFGHIJKLMNOPQRSTUVXYZ'; tabella = new String(25) function ScriviMatrice(chiave, table) { GeneraTabella(chiave) table.innerHTML = "" for (riga = 0; riga < 5; riga++){ for (col = 0; col < 5; col++){ table.innerHTML += tabella.charAt(riga*5+col); } table.innerHTML += " " } } function FaiMatrice(){ chiave = document.forms[0].chiave GeneraTabella(chiave) ScriviMatrice(); }
|