-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacertosNaProva.html
More file actions
27 lines (18 loc) · 876 Bytes
/
acertosNaProva.html
File metadata and controls
27 lines (18 loc) · 876 Bytes
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
<meta charset="utf-8">
<h1>Acertos na prova?</h1>
<script>
document.write("Eu acertei: " + 15/50*100 + "%");
document.write("<br>");
// Tabuada:
var tabuada = 8;
document.write(tabuada + " vezes 1 é " + tabuada * 1 + "<br>");
document.write(tabuada + " vezes 2 é " + tabuada * 2 + "<br>");
document.write(tabuada + " vezes 3 é " + tabuada * 3 + "<br>");
document.write(tabuada + " vezes 4 é " + tabuada * 4 + "<br>");
document.write(tabuada + " vezes 5 é " + tabuada * 5 + "<br>");
document.write(tabuada + " vezes 6 é " + tabuada * 6 + "<br>");
document.write(tabuada + " vezes 7 é " + tabuada * 7 + "<br>");
document.write(tabuada + " vezes 8 é " + tabuada * 8 + "<br>");
document.write(tabuada + " vezes 9 é " + tabuada * 9 + "<br>");
document.write(tabuada + " vezes 10 é " + tabuada * 10 + "<br>");
</script>