summaryrefslogtreecommitdiff
path: root/1553/CH25/EX25.4/25Ex4.sce
blob: 8770bb9200e5a473e850e7fa2e38ac6ad754da91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);