Q:

Write a program in C++ to enter length in centimeter and convert it into meter and kilometer

0

Write a program in C++ to enter length in centimeter and convert it into meter and kilometer.

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 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include<iostream>
using namespace std;

int main()
{
    float km, met,cent;
	cout << "\n\n Convert centimeter into meter and kilometer :\n";
	cout << "--------------------------------------------------\n";	
    cout << " Input the distance in centimeter : ";
    cin >> cent;
	met = (cent/100); 
	km = (cent/100000);
	cout << " The distance in meter is: "<< met << endl;
	cout << " The distance in kilometer is: "<< km << endl;	
	cout << endl;
    return 0;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now