Question: #include using namespace std; int main() { float distance, time, velocity; cout < < Enter how many miles you are traveling < < endl;
#include
int main() {
float distance, time, velocity;
cout << "Enter how many miles you are traveling " << endl; cin >> distance;
cout << "How fast are you traveling in mph? " << endl; cin >> velocity; // Calculate the time it takes here. time = distance/velocity;
cout << endl; cout << "At " << velocity << " mph it will take " << time << " hours to travel " << distance << " miles." << endl; return 0;
}
in c++
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
