-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (93 loc) · 3.43 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Calculadora</title>
<style>
body{
background-color: aquamarine
}
div#res-som{
margin-top: 20px;
}
div#res-sub{
margin-top: 20px;
}
div#res-mul{
margin-top: 20px;
}
input{
width: 100px;
height: 30px;
}
</style>
</head>
<body>
<center><h1>Calculadora</h1></center>
<h3>Somando Valores</h3>
<input type="number" name="txtn1" id="txtn1"> +
<input type="number" name="txtn2" id="txtn2">
<input type="button" value="Somar" onclick="somar()">
<div id='res-som'>Resultado</div>
<h3>Subtraindo Valores</h3>
<input type="number" name="txtn3" id="txtn3"> -
<input type="number" name="txtn4" id="txtn4">
<input type="button" value="Subtrair" onclick="menos()">
<div id='res-sub'>Resultado</div>
<h3>Multiplicando Valores</h3>
<input type="number" name="txtn5" id="txtn5"> x
<input type="number" name="txtn6" id="txtn6">
<input type="button" value="Multiplicar" onclick="vezes()">
<div id='res-mul'>Resultado</div>
<h3>Dividindo Valores</h3>
<input type="number" name="txtn7" id="txtn7"> /
<input type="number" name="txtn8" id="txtn8">
<input type="button" value="Dividir" onclick="divisão()">
<div id='res-div'>Resultado</div>
<script>
window.alert('Essa calculadora foi feita em código JS, e interface baseada no DOM(Document Object Model)')
//Função para calcular soma
function somar(){
var tn1 = window.document.getElementById('txtn1')
var tn2 = window.document.getElementById('txtn2')
var res = window.document.getElementById('res-som')
var n1 = Number(tn1.value)
var n2 = Number(tn2.value)
var s = n1+n2
res.innerHTML = 'A soma entre '+n1+' e '+n2+', é '+s
}
//Função para calcular subtração
function menos(){
var tn1 = window.document.getElementById('txtn3')
var tn2 = window.document.getElementById('txtn4')
var res = window.document.getElementById('res-sub')
var n1 = Number(tn1.value)
var n2 = Number(tn2.value)
var s = n1-n2
res.innerHTML = 'A subtração entre '+n1+' e '+n2+', é '+s
}
//Função para calcular multiplicação
function vezes(){
var tn1 = window.document.getElementById('txtn5')
var tn2 = window.document.getElementById('txtn6')
var res = window.document.getElementById('res-mul')
var n1 = Number(tn1.value)
var n2 = Number(tn2.value)
var s = n1*n2
res.innerHTML = 'A multiplicação entre '+n1+' e '+n2+', é '+s
}
//Função para calcular divisão
function divisão(){
var tn1 = window.document.getElementById('txtn7')
var tn2 = window.document.getElementById('txtn8')
var res = window.document.getElementById('res-div')
var n1 = Number(tn1.value)
var n2 = Number(tn2.value)
var s = n1/n2
res.innerHTML = 'A divisão entre '+n1+' e '+n2+', é '+s
}
</script>
</body>
</html>