Recent content by mulabisc

  1. M

    C/C++ Help with a c++ program that converts numbers 1 t0 1000

    i wil try it n post it...thanks for the advice
  2. M

    C/C++ Help with a c++ program that converts numbers 1 to 1000

    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...
  3. M

    C/C++ Help with a c++ program that converts numbers 1 t0 1000

    #include <iostream> using namespace std; int main() { int n; n >=1; cout<< "please enter an interger number:" <<endl; cin >> n; if(n == 9) cout << "IX"; else if(n >=5 && n<=8) cout << "V"; else if (n == 4)...
Back
Top