-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindLast.html
47 lines (36 loc) · 1.24 KB
/
findLast.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<meta charset="utf-8"/>
<h1>Teste de software</h1>
<h2>Aluno: Maison Marcel</h2>
<script>
var arrayX = [];
var y,i;
var achou;
// retorna o índice do último elemento em X que é igual a y.
// Se o element não existir, retorna -1
// Este loop deve finalizar com 0.
alert("Digite 3 valores para o array");
for(var indice=0;indice<3;indice++){
arrayX[indice] = prompt("Digite o valor do array na posição "+indice);
}
console.log("Tamanho do Array",arrayX.length);
console.log(arrayX)
document.writeln("Array digitado: ",arrayX);
y = prompt("Digite o valor de Y");
document.writeln("<br>Valor de y digitado: ",y);
findLast(arrayX,y);
function findLast(arrayX, y) {
document.write("<br>Executando findLast");
for (i = arrayX.length - 1; i > 0; i--) {
document.write("<br>ArrayX["+i+"] = "+arrayX[i]," arrayX = ",arrayX)
if (arrayX[i] == y) {
document.write("<br>Resultado : ",i);
achou=true;
continue;
}
}
if(!achou){
document.write("<br>Elemento não existe no array ");
}
document.write("<br>A função foi executada");
}
</script>