// in2cm.cc  Convert Inches to Centimeters
// P. Conrad    cisc106 sect99 11/14/2007

// Here we would put the inputs, outputs, example TODO@@@

double in2cm (double inchesIn)
{
  const double cmPerInch = 2.54;
  return inchesIn * cmPerInch;

}

