From 3c2e6a71756ad7caf51dff8cda2a4c41ecf5f7c0 Mon Sep 17 00:00:00 2001 From: LordBaryhobal Date: Tue, 4 Mar 2025 14:22:10 +0100 Subject: [PATCH] added rationals --- src/Lesson3/Rational.sc | 21 +++++++++++++++++++++ src/Lesson3/Rational2.sc | 31 +++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 src/Lesson3/Rational.sc create mode 100644 src/Lesson3/Rational2.sc diff --git a/src/Lesson3/Rational.sc b/src/Lesson3/Rational.sc new file mode 100644 index 0000000..8820c4c --- /dev/null +++ b/src/Lesson3/Rational.sc @@ -0,0 +1,21 @@ +class Rational(n: Int, d: Int) { + def num = n + def denom = d +} + +def add(x: Rational, y: Rational): Rational = + new Rational( + x.num * y.denom + x.denom * y.num, + x.denom * y.denom + ) + +def stringVersion(x: Rational) = x.num + "/" + x.denom + +val r1 = new Rational(1, 2) +r1.num +r1.denom + +val r2 = new Rational(3, 4) + +val r3 = add(r1, r2) +stringVersion(r3) \ No newline at end of file diff --git a/src/Lesson3/Rational2.sc b/src/Lesson3/Rational2.sc new file mode 100644 index 0000000..3774328 --- /dev/null +++ b/src/Lesson3/Rational2.sc @@ -0,0 +1,31 @@ +class Rational(n: Int, d: Int) { + def num = n + def denom = d + + def add(that: Rational): Rational = new Rational( + this.num * that.denom + this.denom * that.num, + this.denom * that.denom + ) + + def neg: Rational = new Rational(-num, denom) + + def smallerThan(that: Rational): Boolean = this.num * that.denom < that.num * this.denom + + def max(that: Rational): Rational = if (this.smallerThan(that)) that else this + + override def toString = num + "/" + denom +} + +val r1 = new Rational(1, 3) +val r2 = new Rational(2, 3) +val r3 = r1.add(r2) + +r3 + +r2.neg + +r2.smallerThan(r1) +r2.smallerThan(r3) + +r2.max(r1) +r2.max(r3) \ No newline at end of file