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