summaryrefslogtreecommitdiff
path: root/1553/CH2/EX2.8/2Ex8.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH2/EX2.8/2Ex8.sce')
-rw-r--r--1553/CH2/EX2.8/2Ex8.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1553/CH2/EX2.8/2Ex8.sce b/1553/CH2/EX2.8/2Ex8.sce
new file mode 100644
index 000000000..a1a34566a
--- /dev/null
+++ b/1553/CH2/EX2.8/2Ex8.sce
@@ -0,0 +1,15 @@
+//chapter 2 Ex 8
+
+clc;
+clear;
+close;
+n1=2; n2=8; n3=16; n4=10;
+d1=3; d2=9; d3=81; d4=27;
+VN=int32([n1 n2 n3 n4]);
+VD=int32([d1 d2 d3 d4]);
+HcfNum=gcd(VN);
+LcmNum=lcm(VN);
+HcfDen=gcd(VD);
+LcmDen=lcm(VD);
+mprintf("The HCF of fractions is %d/%.d.",HcfNum,LcmDen);
+mprintf("The LCM of fractions is %.d/%d.",LcmNum,HcfDen);