diff options
Diffstat (limited to '1484/CH6/EX6.15/6_15.sce')
-rwxr-xr-x | 1484/CH6/EX6.15/6_15.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1484/CH6/EX6.15/6_15.sce b/1484/CH6/EX6.15/6_15.sce new file mode 100755 index 000000000..e00ccea1e --- /dev/null +++ b/1484/CH6/EX6.15/6_15.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+r= 34
+r1= 4
+H= 25 //ft
+x= 18
+l= 2000 //ft
+//CALCULATIONS
+l1= (r-r1-x)*l/H
+//RESULTS
+printf ('l1= %.f ft',l1)
|