diff options
Diffstat (limited to '1364/CH6/EX6.3.3/6_3_3.sce')
-rwxr-xr-x | 1364/CH6/EX6.3.3/6_3_3.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1364/CH6/EX6.3.3/6_3_3.sce b/1364/CH6/EX6.3.3/6_3_3.sce new file mode 100755 index 000000000..537e8deec --- /dev/null +++ b/1364/CH6/EX6.3.3/6_3_3.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+H= 50 //ft
+l= 200 //ft
+g= 32.2 //ft/sec^2
+//CALCU;ATIONS
+i= H/l
+a= i*g
+//RESULTS
+printf ('accelaration = %.2f ft/sec^2',a)
|