added assignment 1
This commit is contained in:
parent
1958945053
commit
8639e2854a
13
src/Assignment1/FirstSteps.sc
Normal file
13
src/Assignment1/FirstSteps.sc
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
def sqr(x: Double): Double = x * x
|
||||||
|
def pow4(x: Double): Double = sqr(x) * sqr(x)
|
||||||
|
|
||||||
|
sqr(3)
|
||||||
|
sqr(7)
|
||||||
|
sqr(0.5)
|
||||||
|
sqr(-2)
|
||||||
|
|
||||||
|
pow4(2)
|
||||||
|
pow4(10)
|
||||||
|
|
||||||
|
// def bar(x: Int, y: Boolean) = "Hello"
|
||||||
|
// A String
|
18
src/Assignment1/SquareRoot.sc
Normal file
18
src/Assignment1/SquareRoot.sc
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import scala.annotation.tailrec
|
||||||
|
|
||||||
|
def THRESHOLD: Double = 0.0001
|
||||||
|
|
||||||
|
def sqr(x: Double): Double = x * x
|
||||||
|
def isGoodEnough(x: Double): Boolean = if (x < 0) x > THRESHOLD else x < THRESHOLD
|
||||||
|
def improve(x: Double, approx: Double) = approx - (sqr(approx) - x) / (2 * approx)
|
||||||
|
|
||||||
|
@tailrec
|
||||||
|
def sqrt(x: Double, approx: Double): Double = if (
|
||||||
|
isGoodEnough(sqr(approx) - x)
|
||||||
|
) {
|
||||||
|
approx
|
||||||
|
} else {
|
||||||
|
sqrt(x, improve(x, approx))
|
||||||
|
}
|
||||||
|
|
||||||
|
sqrt(612, 10)
|
Loading…
x
Reference in New Issue
Block a user