diff options
Diffstat (limited to '1627/CH4/EX4.9/Ex4_9.sce')
-rw-r--r-- | 1627/CH4/EX4.9/Ex4_9.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1627/CH4/EX4.9/Ex4_9.sce b/1627/CH4/EX4.9/Ex4_9.sce new file mode 100644 index 000000000..20d218ff8 --- /dev/null +++ b/1627/CH4/EX4.9/Ex4_9.sce @@ -0,0 +1,8 @@ +clc
+//initialisation of variables
+g=9.8//m/s^2
+h=20//m
+//CALCULATIONS
+V=sqrt(2*g*h)//m//s
+//RESULTS
+printf('The velocity is=% f m/s',V)
|