Added initial version
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
string script_47(int arg0) {
|
||||
if (arg0 > 99) {
|
||||
return intToStr(arg0);
|
||||
}
|
||||
if (arg0 > 9) {
|
||||
return "0" + intToStr(arg0);
|
||||
}
|
||||
if (arg0 >= 0) {
|
||||
return "00" + intToStr(arg0);
|
||||
}
|
||||
return intToStr(arg0);
|
||||
}
|
||||
Reference in New Issue
Block a user