220k views
4 votes
Write a pseudocode to calculate the
volume of a cube, h=10cm, w= 8cm
d = 12cm.

1 Answer

6 votes
Start

Declare int h = 10;
Declare int w = 8;
Declare int d = 12;

Calculate int volume = h * w * d

Print volume

End
User Palani Kannan
by
7.3k points