Computer Science, asked by bruhzinga, 8 months ago

write a program in JAVA to enter a distance in cm and print the changed value in m

Answers

Answered by kunjika158
1

Answer:

Given length in centimeter, the task is to convert it into meter and kilometer.

Examples :

Input: Length in centimeter = 1000

Output:

Length in meter = 10 m

Length in kilometer = 0.01 km

Input: Length in centimeter =6540

Output:

Length in meter = 65.4 m

Length in kilometer = 0.0654 km

Formula to be used:

1m = 100cm

1km = 100000cm

// C++ program to convert centimeter

// into meter and kilometer

#include <bits/stdc++.h>

using namespace std;

int main()

{

float cm, meter, kilometer;

cm = 1000;

// Converting centimeter into meter

// and kilometer

meter = cm / 100.0;

kilometer = cm / 100000.0;

cout << "Length in meter = " << meter << "m"

<< "\n";

cout << "Length in Kilometer = " << kilometer << "km"

<< "\n";

return 0;

}

Output:

Length in meter = 10 m

Length in kilometer = 0.01 km

Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.

Similar questions