diff options
Diffstat (limited to '3636/CH1/EX1.7/Ex1_7.sce')
-rw-r--r-- | 3636/CH1/EX1.7/Ex1_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3636/CH1/EX1.7/Ex1_7.sce b/3636/CH1/EX1.7/Ex1_7.sce new file mode 100644 index 000000000..576e52fd3 --- /dev/null +++ b/3636/CH1/EX1.7/Ex1_7.sce @@ -0,0 +1,10 @@ +clc;
+clear;
+l=5 //length to be covered in cm
+up=26.5*10^8 //in cm/s
+
+//Calculation
+t=(2*l/up)
+
+mprintf("Time taken= %1.1e s",t)
+//The answers vary due to round off error
|