summaryrefslogtreecommitdiff
path: root/409/CH1/EX1.3/Example1_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '409/CH1/EX1.3/Example1_3.sce')
-rwxr-xr-x409/CH1/EX1.3/Example1_3.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/409/CH1/EX1.3/Example1_3.sce b/409/CH1/EX1.3/Example1_3.sce
new file mode 100755
index 000000000..b6b04d331
--- /dev/null
+++ b/409/CH1/EX1.3/Example1_3.sce
@@ -0,0 +1,19 @@
+clear;
+clc;
+
+// Example 1.3
+printf('Example 1.3\n\n');
+//Page no. 17
+// Solution
+
+//(a)
+// Converting all terms to same unit
+nm = 10^(-9);//[meters]
+m1 = 10;//[decimeters]
+dm = (1.8*nm*m1)/(1*1);//[decimeters]
+printf('(a) 1.8 nanometers is equal to %.2e dm.\n',dm);
+
+//(b)
+m2 = 39.37;//[inches]
+in = (1.8*nm*m2)/(1*1);//[inches]
+printf(' (b) 1.8 nanometers is equal to %.2e in.\n',in); \ No newline at end of file