summaryrefslogtreecommitdiff
path: root/1553/CH25/EX25.4/25Ex4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH25/EX25.4/25Ex4.sce')
-rw-r--r--1553/CH25/EX25.4/25Ex4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1553/CH25/EX25.4/25Ex4.sce b/1553/CH25/EX25.4/25Ex4.sce
new file mode 100644
index 000000000..8770bb920
--- /dev/null
+++ b/1553/CH25/EX25.4/25Ex4.sce
@@ -0,0 +1,14 @@
+//Ch25 Ex 4
+clc;
+clear;
+close;
+
+lb=24; bb=12; hb=8; //dimensions of brick
+lw=2400; bw=800; hw=60; //converting meter to centimeter
+mortar=10/100;
+remaining=1-mortar;
+volWall=lw*bw*hw;
+volBricks=remaining*(volWall);
+vol1brick=lb*bb*hb; //volume of 1 brick
+noBricks=volBricks/vol1brick; //number of bricks required
+mprintf("The number od=f bricks required are %d",noBricks);