w3resource

C++ Exercises: Enter length in centimeter and convert it into meter and kilometer

C++ Basic: Exercise-50 with Solution

Write a C++ program to enter length in centimeters and convert it into meters and kilometers.

Visual Presentation:

C++ Exercises: Enter length in centimeter and convert it into meter and kilometer

Sample Solution:

C++ Code :

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

using namespace std; // Using the standard namespace

int main() // Start of the main function
{
    float km, met, cent; // Declaring floating-point variables to store distances in kilometers, meters, and centimeters

    cout << "\n\n Convert centimeter into meter and kilometer :\n"; // Displaying the purpose of the program
    cout << "--------------------------------------------------\n";

    cout << " Input the distance in centimeter : "; // Prompting the user to input the distance in centimeters
    cin >> cent; // Taking the input of distance in centimeters from the user

    met = (cent / 100); // Calculating distance in meters by dividing the input by 100 (1 meter = 100 centimeters)
    km = (cent / 100000); // Calculating distance in kilometers by dividing the input by 100000 (1 kilometer = 100,000 centimeters)

    cout << " The distance in meter is: " << met << endl; // Displaying the distance in meters
    cout << " The distance in kilometer is: " << km << endl; // Displaying the distance in kilometers

    cout << endl; // Displaying an empty line for better readability

    return 0; // Returning 0 to indicate successful program execution
}

Sample Output:

 Convert centimeter into meter and kilometer :                         
--------------------------------------------------                     
 Input the distance in centimeter : 250000                             
 The distance in meter is: 2500                                        
 The distance in kilometer is: 2.5 

Flowchart:

Flowchart: Enter length in centimeter and convert it into meter and kilometer

C++ Code Editor:

Previous: Write a program in C++ to print the code (ASCII code / Unicode code etc.) of a given character.
Next: Write a program in C++ that converts kilometers per hour to miles per hour.

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-50.php