Recent content by mulabisc
-
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- mulabisc
- Post #3
- Forum: Programming and Computer Science
-
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; count<< "please enter an interger number:" <<endl; cin >> n...- mulabisc
- Thread
- C++ Numbers Program
- Replies: 1
- Forum: Programming and Computer Science
-
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; count<< "please enter an interger number:" <<endl; cin >> n; if(n == 9) count << "IX"; else if(n >=5 && n<=8) count << "V"; else if (n == 4)...- mulabisc
- Thread
- C++ Numbers Program
- Replies: 3
- Forum: Programming and Computer Science