w3resource

C++ Exercises: Converts kilometers per hour to miles per hour

C++ Basic: Exercise-23 with Solution

Write a program in C++ that converts kilometers per hour to miles per hour.

Visual Presentation:

C++ Exercises: Converts kilometers per hour to miles per hour

Sample Solution:

C++ Code :

#include <iostream> // Including the input-output stream header file

using namespace std; // Using the standard namespace

int main() // Start of the main function
{
    float kmph, miph; // Declaring floating-point variables for kilometers per hour and miles per hour

    cout << "\n\n Convert kilometers per hour to miles per hour :\n"; // Outputting a message indicating unit conversion
    cout << "----------------------------------------------------\n"; // Outputting a separator line

    cout << " Input the distance in kilometer : "; // Prompting the user to input the distance in kilometers
    cin >> kmph; // Taking input for kilometers per hour from the user

    miph = (kmph * 0.6213712); // Converting kilometers per hour to miles per hour using the conversion factor

    cout << " The " << kmph << " Km./hr. means " << miph << " Miles/hr." << endl; // Displaying the converted value in miles per hour
    cout << endl; // Outputting a blank line for better readability

    return 0; // Returning 0 to indicate successful program execution
} // End of the main function

Sample Output:

 Convert kilometers per hour to miles per hour :                       
----------------------------------------------------                   
 Input the distance in kilometer : 25                                  
 The 25 Km./hr. means 15.5343 Miles/hr. 

Flowchart:

Flowchart: Converts kilometers per hour to miles per hour

C++ Code Editor:

Previous: Write a program in C++ to find the third angle of a triangle.
Next: Write a program in C++ to convert temperature in Kelvin to Fahrenheit.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/cpp-exercises/basic/cpp-basic-exercise-23.php