Get the answers you need at Westonci.ca, where our expert community is dedicated to providing you with accurate information. Our Q&A platform offers a seamless experience for finding reliable answers from experts in various disciplines. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.
Sagot :
Answer:
#include <iostream>
using namespace std;
int main()
{
float speed_in_km_per_hr = 60;
// Output table head
cout << "km/hr miles/hr." << endl;
for (int i = 0; i < 10; i++)
{
// Convert KM/hr to miles/hr
float speed_in_miles_per_hr = speed_in_km_per_hr * 0.6241;
// Output speeds
cout << speed_in_km_per_hr << " " << speed_in_miles_per_hr << endl;
// Increase by 5
speed_in_km_per_hr = speed_in_km_per_hr + 5;
}
return 0;
}
Explanation:
We hope you found what you were looking for. Feel free to revisit us for more answers and updated information. Your visit means a lot to us. Don't hesitate to return for more reliable answers to any questions you may have. We're dedicated to helping you find the answers you need at Westonci.ca. Don't hesitate to return for more.