Convert inches to yards, feet, and inches : Constant « Data Type « C / ANSI-C






Convert inches to yards, feet, and inches

#include <stdio.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: ");
  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);
}

           
       








Related examples in the same category

1.Calculate a discounted priceCalculate a discounted price
2.Cannot assign value to a constant variable
3.Define a constant value