id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

andersoniii.edwin@cusd80.com > RomanSum
prev  |  next  |  chance

Friends, Romans, Countrymen lend me your ear. We will soon have a program which will allow us Romans to do arithmetic using our numerals! PART THREE - THE ADDER - Programmers please complete the code to receive two Decimal numbers, sum these numbers, and return a Roman numeral (string). Use PART TWO where we were concerned with changing 4 into "IV" example 16 will return XVI. Note the largest Roman character is M for 1000. Choose the hint for the other values and characters.


RomanSum(1000, 1000) → "MM"
RomanSum(2000, 900) → "MMCM"
RomanSum(600, 900) → "MD"

...Save, Compile, Run (ctrl-enter)

public String RomanSum(int a, int b) }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 193 Post-solution available

Copyright Nick Parlante 2017 - privacy