-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula7.js
47 lines (41 loc) · 792 Bytes
/
aula7.js
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
// 1 2 3 -> 3 maior e 1 menor
// 1 3 2
// 2 1 3
// 2 3 1
// 3 1 2
// 3 2 1
function ex24()
{
var n1 = prompt("digite o num1"); // 2
var n2 = prompt("digite o num2"); // 1
var n3 = prompt("digite o num3"); // 3
if (n1 > n2)
{
if (n1 > n3)
{
console.log("O maior numero é: " + n1);
}
else
{
console.log("O maior numero é: " + n3);
}
} else
{
if (n2 > n3)
{
console.log("O maior numero é: " + n2);
} else
{
console.log("O maior numero é: " + n3);
}
}
}
// função -> subpro -> subrotina
// E -> P -> S
function soma(n1, n2)
{
var resultado = n1 + n2;
return resultado;
}
// executa a função
soma(3, 5);