Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Figure 4: Example input 1 in the Script property.
Figure 5: Result from example input 1 shown in Figure 4.
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.
Figure 8: Example input 3 in the Script property.
Figure 9: Result from example input 3 shown in Figure 8.