Three equal cubes are cut into 512 small cubes each and then merged
into a cuboid, whose 2 sides are equal. This cuboid is then painted on all
faces. How many of the smaller cubes are not painted on any faces
Answers
Answered by
3
Step-by-step explanation:
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
int multiplication;
clrscr();
printf("Enter the first number");
scanf("%d", &a);
printf("Enter the second number");
scanf("%d", &b);
multiplication = a*b;
printf("The Total is %d", multiplication);
getchar();
}
good mornig
Similar questions