write a program that converts a distance given in yards , feet and inches and convert the given distance in metre.
Answers
Answered by
6
Answer:
Program to add two distances in inch-feet system
#include <stdio.h>
struct Distance {
int feet;
float inch;
} d1, d2, result;
int main() {
printf("Enter 1st distance\n");
printf("Enter feet: ");
scanf("%d", &d1.feet);
printf("Enter inch: ");
scanf("%f", &d1.inch);
printf("\nEnter 2nd distance\n");
printf("Enter feet: ");
scanf("%d", &d2.feet);
printf("Enter inch: ");
scanf("%f", &d2.inch);
result.feet = d1.feet + d2.feet;
result.inch = d1.inch + d2.inch;
// while inch is greater than 12, changing it to feet.
while (result.inch > 12.0) {
result.inch = result.inch - 12.0;
++result.feet;
}
printf("\nSum of distances = %d\'-%.1f\"", result.feet, result.inch);
return 0;
}
Similar questions