C++ program to convert centimeters into millimeters


Following program shows you how to convert centimeters to millimeters .
In this program we get centimeters from user once we get those we need to multiply with 10 so that we get in millimeters

#include <iostream>
#include <math.h>

int main() {
	float centimeters;
	std::cout << "Please enter centimeters:";
	std::cin >> centimeters;
	int millimeters = centimeters * 10;
	std::cout << millimeters << " Millimeters";
}

Output:

Please enter centimeters: 5
50 Millimeters