Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
package pack;
class Solution {
public String intToRoman(int num) {
int[] d = new int[] {
1000, 100, 10 ,1};
String[] str1 = new String[] {
<