-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlastZero.html
44 lines (33 loc) · 1.05 KB
/
lastZero.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
<meta charset="utf-8"/>
<h1>Teste de software</h1>
<h2>Aluno: Maison Marcel</h2>
<script>
var arrayX = [];
var y,indice;
var achou;
// retorna o índice do último 0 em x.
// retorna -1 se o número 0 não ocorre em x
alert("Digite 3 valores para o array");
for(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);
var ultimaPosicao = lastZero(arrayX);
document.write("<br>A função foi executada");
if(ultimaPosicao == -1){
document.write("<br>Elemento 0 não existe no array ");
}else{
document.write("<br>O zero foi encontrado na posição = ",i+" do array");
}
function lastZero(arrayX) {
document.write("<br>Executando findLast");
for (i = 0;i < arrayX.length; i++) {
if (arrayX[i] == 0){
return i;
}
}
return -1;
}
</script>