diff options
Diffstat (limited to '3648/CH3/EX3.11/Ex3_11.sce')
-rw-r--r-- | 3648/CH3/EX3.11/Ex3_11.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH3/EX3.11/Ex3_11.sce b/3648/CH3/EX3.11/Ex3_11.sce new file mode 100644 index 000000000..1e7aa8172 --- /dev/null +++ b/3648/CH3/EX3.11/Ex3_11.sce @@ -0,0 +1,9 @@ + +//Example 3_11
+clc();
+clear;
+//To find out how fast a ball must be thrown
+a=9.8 //units in meters/sec^2
+t=3 //units in sec
+v=(0.5*a*t^2)/t
+printf("The speed by which the ball has to be thrown is v=%.1f meters/sec",v)
|