Algorithm
Problem Name:
In this HackerRank Functions in C programming problem solution,
You are transporting some boxes through a tunnel, where each box is a parallelepiped, and is characterized by its length, width and height.
The height of the tunnel 41 feet and the width can be assumed to be infinite. A box can be carried through the tunnel only if its height is strictly less than the tunnel's height. Find the volume of each box that can be successfully transported to the other end of the tunnel. Note: Boxes cannot be rotated.
Input Format
The first line contains a single integer n denoting the number of boxes. n lines follow with three integers on each separated by single spaces - lengthi, widthi and heighti which are length, width and height in feet of the i-th box.
Constraints
- 1 <= n <= 100
- 1 <= lengthi, widthi, heighti <= 100
Output Format
Sample Input 0
4
5 5 5
1 2 40
10 5 41
7 2 42
Sample Output 0
125
80
Code Examples
#1 Code Example with C Programming
Code -
C Programming
#include <stdio.h>
#include <stdlib.h>
#define MAX_HEIGHT 41
struct box
{
int length, width, height;
};
typedef struct box box;
int get_volume(box b) {
return (b.length * b.width * b.height);
}
int is_lower_than_max_height(box b) {
/**
* Return 1 if the box's height is lower than MAX_HEIGHT and 0 otherwise
*/
if(b.height < MAX_HEIGHT)
return 1;
else
return 0;
}
int main(void)
{
int n;
scanf("%d", &n);
box *boxes = malloc(n * sizeof(box));
for(int i = 0; i < n; i++){
scanf("%d%d%d", &boxes[i].length, &boxes[i].width, &boxes[i].height);
}
for(int i = 0; i < n; i++){
if(is_lower_than_max_height(boxes[i])){
printf("%d\n", get_volume(boxes[i]));
}
}
return 0;
}
Copy The Code &
Try With Live Editor
Input
Output