From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3782/CH8/EX8.5/Ex8_5.sce | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 3782/CH8/EX8.5/Ex8_5.sce (limited to '3782/CH8/EX8.5') 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) -- cgit