/ Published in: JavaScript
Expand |
Embed | Plain Text
<SCRIPT LANGUAGE="Javascript"> var contador = 3; var num = 0; var sid = new Array(contador); var x = new Array(contador); var password = ""; function seed_gen() { var elements = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; num+=1; for (x[num]=0; x[num]<elements.length; x[num]++) { letra = elements.substring(x[num],x[num]+1); sid[num-1] = letra; if (num<contador) { seed_gen(); } else { password = ""; for (z=0;z<contador;z++){ password = password + sid[z]; } funcion_encript(sid + letra); } } num=num-1; document.write("Testing: " + password + " "); } </script>
Comments
Subscribe to comments
You need to login to post a comment.

Faça um programa que leia a média dos alunos de uma disciplina, calcule e informe a média da turma e informe o aluno com a nota maior.
please help me in exercise:
Create a program that reads the average of students in a discipline, calculate and report the average class and tell the student with the higher score.