diff options
Diffstat (limited to '3782/CH8/EX8.5/Ex8_5.sce')
-rw-r--r-- | 3782/CH8/EX8.5/Ex8_5.sce | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/3782/CH8/EX8.5/Ex8_5.sce b/3782/CH8/EX8.5/Ex8_5.sce new file mode 100644 index 000000000..145b639f2 --- /dev/null +++ b/3782/CH8/EX8.5/Ex8_5.sce @@ -0,0 +1,29 @@ + + + +// + +// + +printf("\n bottom section') +L=40//m +B=30//m +a1=L*B//m2 +printf("\n area A1= %0.3f sq. meters",a1) + +printf("\n mid section') +b=40//m +sh=2.5//m + +l=L+2*2*sh +b=B+2*2*sh +a2=l*b +printf("\n area A2= %0.3f sq. meters",a2) + +printf("\n top section') +sh=5 + +l1=L+2*sh +b1=B*2*2*sh +a3=l1*b1 +printf("\n area A3= %0.3f sq. meters",a3) |