Código C++ – Convertir Decimales a Números Romanos

//Codificado por: sAfOrAs //CONVIERTE DECIMALES EN NUMEROS ROMANOS #include <iostream> using namespace std; int main() { int x; cout << "ingrese un numero" << endl; cin >> x; if ((x < 1) || (x > 999)) cout << "Ingrese un numero entre 1-999" << endl; else { if (x >= 900) { cout << "CM"; … Continuar leyendo Código C++ – Convertir Decimales a Números Romanos