Computing.net: Question & Answers Forum Latest Questions

computing
  • 1
  • 1

[code]void UserConvert(void) { int num1; printf(“You have chosen to input the Arabic Number you wish to convert yourself. Please enter an Arabic Number: n”); scanf(“%i”, &num1); while (num1 >= 1000) { printf(“M”); num1 -= 1000; } if (num1 >= 900) { printf(“CM”);