InterviewSolution
Saved Bookmarks
| 1. |
Write the equivalent Roman numerals for 350 |
|
Answer» Break the number (decompose it) into place value subgroups: 350 = 300 + 50; 2. Convert each subgroup: 300 = 100 + 100 + 100 = C + C + C = CCC;50 = L; 3. Wrap up the Roman numeral: 350 = 300 + 50 = CCC + L = CCCL; I know you don't know |
|