-
Notifications
You must be signed in to change notification settings - Fork 0
/
4.scala
121 lines (91 loc) · 2.09 KB
/
4.scala
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* リスト 4.2 ここから */
val n = 3
for { i <- (1 to n) }{
println(i)
}
/* リスト 4.2 ここまで */
/* リスト 4.4 ここから */
for {
i <- (0 to 12 by 3) if i % 2 == 0
j <- (1 to 3)
} {
println(i * j)
}
/* リスト 4.4 ここまで */
/* リスト 4.6 ここから */
val result = for {
i <- (1 to 3)
} {
i
}
/* リスト 4.6 ここまで */
/* リスト 4.7 ここから */
def fizzBuzz(n: Int): Unit = for { i <- 1 to n } {
if (i % 15 == 0) {
println("FizzBuzz")
} else if (i % 3 == 0) {
println("Fizz")
} else if (i % 5 == 0) {
println("Buzz")
} else {
println(i)
}
}
/* リスト 4.7 ここまで */
/* リスト 4.10 ここから */
def fizzBuzz(n: Int): Unit = for { i <- 1 to n } {
i match {
case x if x % 15 == 0 =>
println("FizzBuzz")
case x if x % 3 == 0 =>
println("Fizz")
case x if x % 5 == 0 =>
println("Buzz")
case x =>
println(x)
}
}
/* リスト 4.10 ここまで */
/* リスト 4.13 ここから */
val data = 10
val result = data match {
case 0 =>
"0です"
case 1 | 2 =>
"1か2です"
case x if x % 3 == 0 =>
"0でも1でも2でもなく3で割り切れる値である" + x.toString + "です"
case x =>
s"0でも1でも2でもなく3で割り切れない値である${x}です"
}
println(result)
/* リスト 4.13 ここまで */
/* リスト 4.14 ここから */
def fizzBuzz(n: Int, i: Int = 1): Unit = {
i match {
case x if x % 15 == 0 =>
println("FizzBuzz")
case x if x % 3 == 0 =>
println("Fizz")
case x if x % 5 == 0 =>
println("Buzz")
case x =>
println(x)
}
if (i < n) fizzBuzz(n, i + 1)
}
fizzBuzz(15)
/* リスト 4.14 ここまで */
/* リスト 4.15 ここから */
def fib(n: Int): Int =
if (n < 2) n else fib(n - 1) + fib(n - 2)
/* リスト 4.15 ここまで */
/* リスト 4.16 ここから */
def fib(n: Int): Int = {
@scala.annotation.tailrec
def go(n: Int, prev: Int, curr: Int): Int =
if(n == 0) prev
else go(n - 1, curr, prev + curr)
go(n, 0, 1)
}
/* リスト 4.16 ここまで */