//Faça um Programa que converta metros para centimetros.
#include <stdio.h>
#include <stdlib.h>
main() {
int vm, vc;
printf("Informe o valor desejado em metros:");
scanf("%i",&vm);
vc = vm * 100;
printf("\n%i metro = %i centimetros", vm,vc);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: