// Im having a problem getting this program to work for me. First it wont divide and second
// how do I show desimals? like 0.62?



# include <iostream>
using namespace std;
int main ()
{
const float k_p_m = 0.62; // problem starts here
float 0.00;
float miles, kms;
cout << "Enter distance in Kilometers:" << endl;
cin >> kms;
miles = kms / k_p_m; //here is my second problem
cout << "The distance in miles is "<< endl;
cout << kms << endl;
return 0;
}

// any hints you could pass my way? thanks