diff options
Diffstat (limited to '1364/CH9/EX9.5.1/9_5_1.sce')
-rwxr-xr-x | 1364/CH9/EX9.5.1/9_5_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1364/CH9/EX9.5.1/9_5_1.sce b/1364/CH9/EX9.5.1/9_5_1.sce new file mode 100755 index 000000000..a98863bb2 --- /dev/null +++ b/1364/CH9/EX9.5.1/9_5_1.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+s= 20 //ft
+u= 10 //ft/sec
+t= 1 //sec
+//CALCULATIONS
+r= s/u
+a= r*u/t
+//RESULTS
+printf (' constant accelaration= %.f ft/sec^2',a)
|