(d) 16 km 24 minto m
2. Convert:
(a) 7 km 5
7 km 5 hm 6 dam 4 m into m
ic) 6 km 6 hm into m
(b) 3 km 8 hm 4 dam intom
d) 4hm 5 dam 6 mintom
Convert:
(a) 9 m into cm
(C) 2.36 m into
4. Convert:
(b) 7.6 m into cm
(d) 8 dam into cm
(a) 6 km into hm
(b) 53 km into dam
(d) 2.5 dam into dm
(c) 4.63 km into dam
Answers
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.
Recommended Posts:
Program to convert Centimeter to Feet and Inches
Program to convert Degree to Radian
Program to Convert Radian to Degree
Program to Convert Km/hr to
Answer:
16 km 24m into m
Step-by-step explanation:
plz answer