(String[] args)
| 50 | } |
| 51 | |
| 52 | public static void main(String[] args) { |
| 53 | Scanner sc = new Scanner(System.in); |
| 54 | while (true) { |
| 55 | try { |
| 56 | System.out.println("Please enter an Integer value"); |
| 57 | int num = Integer.parseInt(sc.next()); |
| 58 | System.out.println(intToRoman(num)); |
| 59 | } catch (Exception e) { |
| 60 | System.out.println("Something went wrong, please make sure to enter integer only"); |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | } |
nothing calls this directly
no test coverage detected