The following is the situation:
I have three String parameters a1,a2,a3
Each of the parameter has a different number inside
a1: 12
a2: 34
a3: 56
So using a for -loop i want to insert these number into a method
items = the amount of parameters so in this case 3
for (int i=1;i<=items;i++){
popupCmplx_RPM(a+i);
sleep(2);
}
So the problem is if I run the functionality it will create for the String a1: a+i -> 121 instead of 12
The parameters are already set I can't change that part of the code so help is appreciated. I sure there is an easier way without the parameters, but other that adding new code I can't remove those
The total amount of parameters set at the moment are 16 some of which can be 0 so in this example there are only three and the rest are zero. with the int items variable the amount of parameters used is given