-
Notifications
You must be signed in to change notification settings - Fork 0
/
02_exercicios.js
59 lines (47 loc) · 946 Bytes
/
02_exercicios.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
47
48
49
50
51
52
53
54
55
56
57
58
59
// Funções
// 2. Declaração
function dobro(valor){
return valor*2;
}
// 3. Mais funções
function metade(valor){
return valor/2;
}
// 4. Fazendo contas
function multiplicar (num1, num2){
return num1 * num2;
}
// 5. Usando funções
function triploDaSoma(v1, v2){
return triplo(v1+v2);
}
// 6. Fórmulas e funções
function perimetro (r){
return 3.14*r*2;
}
function area(r){
return 3.14*r*r;
}
// 7. Operando strings
function tamanhoNomeCompleto(n,s){
let total = n.length+1+s.length;
return total;
}
// 8. Criando cartões
function escreverCartao(titulo, nome, sobrenome){
return titulo+" "+nome+" "+sobrenome;
}
// 9. Conhecendo funções Math
Math.abs(0);
Math.abs (7);
Math.abs (-8);
Math.round (3.14);
Math.round (7.87);
Math.floor (2.15);
Math.floor (11.78);
Math.max (39, 18);
Math.min (-3,21) ;
// 10. Mais uma função
function gerarProbabilidade(){
return 100*Math.random ();
}