-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab01.hs
73 lines (51 loc) · 1.22 KB
/
lab01.hs
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
--3:
double no = no + no
--4:
quad no = double (double no)
--5:
soma2 x y = x + y
--6:
misterio a b c d = soma2 (soma2 a b) (soma2 c d)
--7:
soma4 a b c d = a + b + c + d
--outros trem
hip a b = sqrt(a*a + b*b)
zeroto :: Int -> [Int]
zeroto n = [0..n]
isDigit :: Char->Bool
isDigit c = c>='0' && c <= '9'
olhaimc imc |imc <= 18.5 = "ganhe peso"
|imc <= 25.0 = "ótimo"
|imc <= 30.0 = "gordo"
|otherwise = "muito acima do peso"
media3 a b c = (a + b + c) /2
maior1 :: Int->Int->Int
maior1 a b = if a >b then a
else b
maior2 a b
| a>b = a
| otherwise = b
maior2' :: Int->Int->Int
maior2' a b = if a >b then a
else if b>a then b
else a
maior3 :: Int->Int->Int->Int
maior3 a b c = if a>b && b>c then a
else if a<b && b>c then b
else c
maior3' :: Int->Int->Int->Int
maior3' a b c
| a>b && b>c = a
| a<b && b>c = b
| otherwise = c
maior3'' :: Int->Int->Int->Int
maior3'' a b c = maior1 (maior1 a b) (maior1 b c)
numRaizes :: Float->Float->Float->Int
numRaizes a b c
|sqrt(b*b - 4*a*c) > 0.0 = 2
|sqrt(b*b - 4*a*c) == 0.0 = 1
|otherwise = 0
misterio2 m n p = not( m==n&&n==p)
--guardas
abs n |n>= 0= n
|n<0 = -n