Wednesday, 30 September 2015

input inches from the user and convert it into yards, feet and inches

#include <stdio.h>
#include<conio.h> 
void main() 
{ 
int inches = 0; 
int yards = 0; 
int feet = 0; 
const int inches_per_foot = 12; 
const int feet_per_yard = 3; 
printf("Enter a distance in inches: It); 
scanf("%d", &inches); 
feet = inches/ inches_per_foot; 
yards = feet/ feet_per_yard; 
feet %= feet_per_yard; 
inches %= inches_per_foot; 
printf("That is equivalent to %d yards %d feet and %d inches.\n",yards, feet, inches); 
getch(); 
} 



No comments:

Post a Comment