diff options
Diffstat (limited to '3648/CH3/EX3.6/Ex3_6.sce')
-rw-r--r-- | 3648/CH3/EX3.6/Ex3_6.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3648/CH3/EX3.6/Ex3_6.sce b/3648/CH3/EX3.6/Ex3_6.sce new file mode 100644 index 000000000..570f8aaca --- /dev/null +++ b/3648/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,8 @@ +//Example 3_6
+clc();
+clear;
+//To find the time taken by a car to travel
+x=98 //uniys in meters
+a=4 //units in meters/sec^2
+t=sqrt((2*x)/a) //units in sec
+printf("Time taken by a car to travel is T=%d sec",t)
|