summaryrefslogtreecommitdiff
path: root/1332/CH1/EX1.36/1_36.sce
diff options
context:
space:
mode:
Diffstat (limited to '1332/CH1/EX1.36/1_36.sce')
-rwxr-xr-x1332/CH1/EX1.36/1_36.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1332/CH1/EX1.36/1_36.sce b/1332/CH1/EX1.36/1_36.sce
new file mode 100755
index 000000000..eb586d51b
--- /dev/null
+++ b/1332/CH1/EX1.36/1_36.sce
@@ -0,0 +1,9 @@
+//Example 1.36
+//Division
+//Page no. 28
+clc;clear;close;
+a=[0.1132e1,0.1132e-6,0.1132e6];b=[0.1000e-99,0.1000e99,0.1000e3];
+for i=1:3
+ c(i)=a(i)/b(i)
+ printf('\nDivision of %.2g by %.3g= %.3g\n',a(i),b(i),c(i))
+end