Skip to content

Instantly share code, notes, and snippets.

@theboreddev
Created June 11, 2020 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theboreddev/274e8da1c619961d5d4b1ddd428e239d to your computer and use it in GitHub Desktop.
Save theboreddev/274e8da1c619961d5d4b1ddd428e239d to your computer and use it in GitHub Desktop.
I&V
public class RomanNumerals {
public static String convert(int number) {
if (number == 5) {
return "V";
}
return "I";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment