I have tried to come up with the code below so i want to improve it so tha it converts numbers 1 to 1000 to romans.. help out!
#include <iostream>
using namespace std;
int main()
{
int n;
n >=1;
cout<< "please enter an interger number:" <<endl;
cin >> n...