It is already integer.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-03-27 09:45:02 +01:00
parent 14f958a4b2
commit d76e48c885
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
class Program {
private string num2Roman(int $num) {
int $n = (int) $num;
int $n = $num;
string $result = '';
int[] $lookup = {'M' => 1000, 'CM' => 900, 'D' => 500, 'CD' => 400,
'C' => 100, 'XC' => 90, 'L' => 50, 'XL' => 40,