Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
twitch
live-coding-fr
Commits
72b71807
Commit
72b71807
authored
Nov 24, 2020
by
Colin DAMON
Browse files
Refacto six conversion
parent
0e4a9564
Changes
1
Hide whitespace changes
Inline
Side-by-side
tcr-roman-numerals/src/main/java/fr/ippon/kata/numeral/Numerals.java
View file @
72b71807
...
...
@@ -3,12 +3,8 @@ package fr.ippon.kata.numeral;
public
class
Numerals
{
public
static
String
toRoman
(
int
arabic
)
{
if
(
arabic
==
6
)
{
return
"VI"
;
}
if
(
arabic
==
5
)
{
return
"V"
;
if
(
arabic
>=
5
)
{
return
"V"
+
toRoman
(
arabic
-
5
);
}
if
(
arabic
==
4
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment