...
Input and Corresponding Result For Reference
Sample 1: Display custom string
Figure 4: Example input 1 in the Script property.
Figure 5: Result from example input 1 shown in Figure 4.
Sample 2: Display number row in roman numerals
Figure 6: Example input 2 in the Script property.
Code Block | ||
---|---|---|
| ||
int decimalNumber = index+1; int[] values = {1000,900,500,400,100,90,50,40,10,9,5,4,1}; String[] romanLetters = {"M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"}; StringBuilder romanNumber = new StringBuilder(); for(int i=0; i<values.length; i++){ while(decimalNumber >= values[i]){ decimalNumber = decimalNumber - values[i]; romanNumber.append(romanLetters[i]); } } return romanNumber; |
Figure 7: Result from example input 2 shown in Figure 6.
Sample 3: Display number row with conditional prefix
Figure 8: Example input 3 in the Script property.
Figure 9: Result from example input 3 shown in Figure 8.