summaryrefslogtreecommitdiff
path: root/1553/CH25/EX25.9/25Ex9.sce
blob: 8b6383c8265b72547863272ec66464ac71979e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
//chapter 25 EX 9
clc;
clear;
close;
l=6; b=12; h=15;
volume=l*b*h;

side_largest=gcd(int32([l b h]));   //side of largest cube
vol_largestcube=side_largest^3;
num_of_cubes=volume/vol_largestcube;
printf("The least possible cubes are %d",(volume/vol_largestcube));