diff options
Diffstat (limited to '1844/CH3/EX3.1')
-rw-r--r-- | 1844/CH3/EX3.1/3Q1.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1844/CH3/EX3.1/3Q1.sce b/1844/CH3/EX3.1/3Q1.sce new file mode 100644 index 000000000..b538e3350 --- /dev/null +++ b/1844/CH3/EX3.1/3Q1.sce @@ -0,0 +1,8 @@ +clc
+//Intialising variables
+L=20 //Chain length in m
+L1= 20 + 10/100 // Incorrect length of chain in m
+l1=250 // Measures length in m
+l= l1 *(L1/L) // True length of line in m
+//Results
+printf('True length of the line = %f m',l)
|