diff options
Diffstat (limited to '1553/CH2/EX2.7/2Ex7.sce')
-rw-r--r-- | 1553/CH2/EX2.7/2Ex7.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1553/CH2/EX2.7/2Ex7.sce b/1553/CH2/EX2.7/2Ex7.sce new file mode 100644 index 000000000..9666e0f4b --- /dev/null +++ b/1553/CH2/EX2.7/2Ex7.sce @@ -0,0 +1,12 @@ +//chapter 2 Ex 7
+
+clc;
+clear;
+close;
+n1=16; n2=24; n3=36; n4=54;
+V=int32([n1 n2 n3 n4]);
+Lcm=lcm(V);
+mprintf("The LCM of given numbers is %d.",Lcm);
+
+
+
|