//This program converts the speeds 60 kph through
//130 kph (in 10 kph increments) to mph.
#include <iostream>
#include <iomanip>
using namespace std;

int main() 
{
	//Constants for the speeds
	const int START_KPH = 60,		//Starting spped
			  END_KPH = 130,		//Ending speed
			  INCREMENT = 10;		//speed increment
	
	//Constant for the conversion factor
	const double CONVERSION_FACTOR = 0.6214;
	
	//Variables
	int kph;	//To hold speeds in kph
	double mph;	//To hold speeds in mph
	
	//Set the numeric output formating.
	cout << fixed << showpoint << setprecision(1);
	
	//Display the table headings.
	cout << "KPH\tMPH\n";
	cout << "---------------\n";
	
	//Display the speeds.
	for (kph = START_KPH; kph <= END_KPH; kph += INCREMENT)
	{
		//Calculate mph
		mph = kph * CONVERSION_FACTOR;
		
		//Display the speeds in kph and mph.
		cout << kph << "\t" << mph << endl;
		
	}
	return 0;
}
