one face 5 x 5 is 25. 25 x 6 for 6 faces is 150
The cube of any number, X is X*X*X
It is: 2+15+2+15 = 34cm
The total surface area of a cube would be 6 x area-of-one-cube-face (there are 6 faces to a cube). Each face of a cube is a square. If any edge of the cube is "a", then: 6 x a x a.
Area of a cube = 6 X side X side since all sides of cube are equal.
15*15 = 225 square centimetres.
There are 11 possible nets for a cube. The most familiar shape is a cross. The x's in the rectangle below. oxo xxx oxo oxo
1m*2m*15cm = 0.3 metres3 = 300 Litres
one face 5 x 5 is 25. 25 x 6 for 6 faces is 150
34 cm
2 x 2 x 2 = 8
Let x be the length of one of the congruent sides, then the three sides are x, x, 3x. Perimeter = x + x + 3x = 5x = 75cm => x = 15cm Thus the three sides are 15cm, 15cm, 45cm.
three.1 cube x 1 cube x 18 cubes1 cube x 2 cubes x 9 cubes1 cube x 3 cubes x 6 cubes
The cube of any number, X is X*X*X
x^3+y^3 Cube root of the first, x plus cube root of the last, y times What it takes to make the first number, x^2 Opposite sign, - Product of the two cube roots, -xy Then what it takes to make the last. (x+y)(X^2-xy+y^2)
(1/5) x 15 = 3 cm
you make a function yourself For example : int cube (int input); int main (void) { int x = 2; printf(x is %d\n",x); x = cube (x); printf("x is %d\n",x); return 0; } int cube (int input) { int output = input * input *input ; return output; } the output will be : x is 2 x is 8